openmeter / info /httpdriver /driver.go
Leon4gr45's picture
Upload folder using huggingface_hub (part 5)
cee2387 verified
Raw
History Blame Contribute Delete
335 Bytes
package httpdriver
import "github.com/openmeterio/openmeter/pkg/framework/transport/httptransport"
type Handler interface {
ListCurrencies() ListCurrenciesHandler
}
type handler struct {
options []httptransport.HandlerOption
}
func New(options ...httptransport.HandlerOption) Handler {
return &handler{
options: options,
}
}