Create go-project

This commit is contained in:
Ruakij 2022-11-03 08:36:28 +01:00
parent 3f06cd9d44
commit 5aae6c456e
2 changed files with 12 additions and 0 deletions

9
app.go Normal file
View File

@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello World!")
}

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module RoutingTableToWgTranslator
go 1.19