diff --git a/main.go b/main.go new file mode 100644 index 0000000..07f00f6 --- /dev/null +++ b/main.go @@ -0,0 +1,22 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + +package main + +import ( + "fmt" + "os" + + "git.st8l.com/luxolus/kdnotify/cmd" +) + +func main() { + err := cmd.Execute() + if err != nil { + fmt.Println(err.Error()) + os.Exit(1) + } +}