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