package notify import webpush "github.com/SherClockHolmes/webpush-go" // GenerateVAPIDKeys generates a VAPID key pair for web push notifications. // Returns the base64url-encoded public and private keys. func GenerateVAPIDKeys() (publicKey, privateKey string, err error) { return webpush.GenerateVAPIDKeys() }