🎉 Initial Commit

This commit is contained in:
2024-10-25 00:56:22 +08:00
commit 7597bff972
26 changed files with 2052 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package provider
import (
"git.solsynth.dev/hypernet/pusher/pkg/pushkit"
)
type NotificationProvider interface {
Push(in pushkit.Notification, tk string) error
GetName() string
}