Compare commits

...

1 commit
main ... backup

Author SHA1 Message Date
0e0123e5f7 backup 2024-04-30 18:43:56 +02:00
5 changed files with 17 additions and 0 deletions

2
Makefile Normal file
View file

@ -0,0 +1,2 @@
build:
go build -o build/

BIN
build/ipam Executable file

Binary file not shown.

3
go.mod Normal file
View file

@ -0,0 +1,3 @@
module git.faercol.me/faercol/ipam
go 1.22.0

5
internal/model/device.go Normal file
View file

@ -0,0 +1,5 @@
package model
type Device struct {
}

7
main.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("coucou")
}