10 lines
127 B
Go
10 lines
127 B
Go
package server
|
|
|
|
import "errors"
|
|
|
|
var ErrAssetNotFound = errors.New("asset not found")
|
|
|
|
type Assets struct {
|
|
BasePath string
|
|
}
|