openmeter / app /customer.go
Leon4gr45's picture
Upload folder using huggingface_hub
429334c verified
Raw
History Blame Contribute Delete
137 Bytes
package app
type CustomerData interface {
Validate() error
}
type CustomerApp struct {
App App
CustomerData CustomerData
}