8 lines
166 B
Go
8 lines
166 B
Go
|
|
package interfaces
|
||
|
|
|
||
|
|
type Utils interface {
|
||
|
|
MerchImageVolumePath(u, m string) string
|
||
|
|
FilenameFromType(imgType string) string
|
||
|
|
MerchImageURL(u, m, t string) string
|
||
|
|
}
|