Initial commit

This commit is contained in:
Manuel 2023-08-29 18:00:00 +02:00
commit eca46fcadd
Signed by: Manuel
GPG key ID: 4085037435E1F07A
21 changed files with 1666 additions and 0 deletions

15
main.go Normal file
View file

@ -0,0 +1,15 @@
package main
import (
"git.snrd.eu/sunred/discord-tweeter/cmd"
"log"
)
var (
prefix = "discord-tweeter > "
)
func main() {
log.SetPrefix(prefix)
cmd.Run()
}