Melora Hugues
bd9bba54ba
Ref #1 Create an initial Go module with a simple unit test and a makefile. This can be tested using a CI pipeline, which will ensure that the following commits don't break anything.
11 lines
124 B
Go
11 lines
124 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func testMethod(a int) int {
|
|
return a + 2
|
|
}
|
|
|
|
func main() {
|
|
fmt.Println("public ip tracker")
|
|
}
|