add new notifications service

This commit is contained in:
David Christofas
2022-02-18 15:44:53 +01:00
parent b16ada2eec
commit 238d2dfdbc
17 changed files with 352 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package main
import (
"os"
"github.com/owncloud/ocis/notifications/pkg/command"
"github.com/owncloud/ocis/notifications/pkg/config"
)
func main() {
if err := command.Execute(config.DefaultConfig()); err != nil {
os.Exit(1)
}
}