main: wire up CLI

This commit is contained in:
Paul Stemmet 2022-12-09 12:42:27 +00:00
parent 296c7b8d5e
commit 8961f49bf6
Signed by: Paul Stemmet
GPG key ID: EDEA539F594E7E75

22
main.go Normal file
View file

@ -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)
}
}