429334c
1
2
3
4
5
6
7
8
9
10
package app import ( "context" ) type WebhookURLGenerator interface { GetWebhookURL(ctx context.Context, appID AppID) (string, error) }