openmeter / app /webhook.go
Leon4gr45's picture
Upload folder using huggingface_hub
429334c verified
Raw
History Blame Contribute Delete
140 Bytes
package app
import (
"context"
)
type WebhookURLGenerator interface {
GetWebhookURL(ctx context.Context, appID AppID) (string, error)
}