fix: first temperature post request
This commit is contained in:
27
main.go
Normal file
27
main.go
Normal file
@ -0,0 +1,27 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"log"
|
||||
"os"
|
||||
"os/user"
|
||||
|
||||
"git.cryptic.systems/fh-trier/go-flucky/cmd"
|
||||
)
|
||||
|
||||
var version string
|
||||
|
||||
func main() {
|
||||
|
||||
user, err := user.Current()
|
||||
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
if user.Uid != "0" {
|
||||
log.Println("you need to be root to run this command")
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
cmd.Execute(version)
|
||||
}
|
Reference in New Issue
Block a user