add main for testing some things
This commit is contained in:
parent
8699385192
commit
96a90cb333
1 changed files with 24 additions and 0 deletions
24
main.go
Normal file
24
main.go
Normal file
|
@ -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:
|
||||||
|
// <https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12>.
|
||||||
|
// 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)
|
||||||
|
}
|
Loading…
Reference in a new issue