From 96a90cb3338789719752740e6d44768ab90b1f70 Mon Sep 17 00:00:00 2001 From: mStar aka a person <12024604-mstarongitlab@users.noreply.gitlab.com> Date: Wed, 17 Jan 2024 10:44:08 +0100 Subject: [PATCH] add main for testing some things --- main.go | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 main.go diff --git a/main.go b/main.go new file mode 100644 index 0000000..cdb818a --- /dev/null +++ b/main.go @@ -0,0 +1,24 @@ +// Copyright (c) 2024 mStar +// +// Licensed under the EUPL, Version 1.2 +// +// You may not use this work except in compliance with the Licence. +// You should have received a copy of the Licence along with this work. If not, see: +// . +// See the Licence for the specific language governing permissions and limitations under the Licence. +// + +package main + +import ( + "fmt" + + "gitlab.com/beckersam/linstrom/config" +) + +func main() { + cliArgs := config.ReadCLIArguments() + fmt.Println(cliArgs) + cfg := config.ReadConfig(&cliArgs) + fmt.Println(cfg) +}