initial commit
Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Iec17afe27e51e55d53e09479fcdfd4456a6a6964
This commit is contained in:
commit
356aa999af
15 changed files with 149 additions and 0 deletions
14
cmd/ncro/main.go
Normal file
14
cmd/ncro/main.go
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"log/slog"
|
||||
"os"
|
||||
)
|
||||
|
||||
func main() {
|
||||
slog.SetDefault(slog.New(slog.NewJSONHandler(os.Stdout, &slog.HandlerOptions{
|
||||
Level: slog.LevelInfo,
|
||||
})))
|
||||
slog.Info("ncro starting")
|
||||
os.Exit(0)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue