From 68f0448a3b4b64e4c713f523649b7ee9fd3f250e Mon Sep 17 00:00:00 2001 From: Jens Drenhaus Date: Sun, 7 Jul 2024 20:18:43 +0200 Subject: [PATCH] chore: init dutctl cmd --- cmds/dutctl/dutctl.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 cmds/dutctl/dutctl.go diff --git a/cmds/dutctl/dutctl.go b/cmds/dutctl/dutctl.go new file mode 100644 index 0000000..2edcfd9 --- /dev/null +++ b/cmds/dutctl/dutctl.go @@ -0,0 +1,7 @@ +package main + +import "log" + +func main() { + log.Println("Not yet implemented") +}