Skip to content

Commit

Permalink
Bump to v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
c0re100 committed Mar 5, 2021
1 parent 64474ec commit 79c683e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@ import (
"github.com/c0re100/RadioBot/wrtc"
)

var (
version = "1.0.1"
)

func main() {
fmt.Printf("RadioBot v%v\n", version)

ch := make(chan os.Signal, 2)
signal.Notify(ch, os.Interrupt, syscall.SIGINT)
signal.Notify(ch, os.Interrupt, syscall.SIGKILL)
Expand Down

0 comments on commit 79c683e

Please sign in to comment.