10 lines
119 B
Go
10 lines
119 B
Go
|
|
package config
|
||
|
|
|
||
|
|
import (
|
||
|
|
"assets/consts/asset"
|
||
|
|
)
|
||
|
|
|
||
|
|
type AssetConfigInterface interface {
|
||
|
|
GetType() consts.AssetType
|
||
|
|
}
|