snow/aid/aid.go

25 lines
425 B
Go
Raw Normal View History

2023-11-01 00:05:17 +00:00
package aid
import (
"encoding/json"
2023-11-01 00:05:17 +00:00
"os"
"os/signal"
"syscall"
)
func WaitForExit() {
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGINT, syscall.SIGTERM, os.Interrupt)
<-sc
}
func JSONStringify(input interface{}) string {
json, _ := json.Marshal(input)
return string(json)
}
func JSONParse(input string) interface{} {
var output interface{}
json.Unmarshal([]byte(input), &output)
return output
2023-11-01 00:05:17 +00:00
}