Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
0e0123e5f7 |
5 changed files with 17 additions and 0 deletions
2
Makefile
Normal file
2
Makefile
Normal file
|
@ -0,0 +1,2 @@
|
|||
build:
|
||||
go build -o build/
|
BIN
build/ipam
Executable file
BIN
build/ipam
Executable file
Binary file not shown.
3
go.mod
Normal file
3
go.mod
Normal file
|
@ -0,0 +1,3 @@
|
|||
module git.faercol.me/faercol/ipam
|
||||
|
||||
go 1.22.0
|
5
internal/model/device.go
Normal file
5
internal/model/device.go
Normal file
|
@ -0,0 +1,5 @@
|
|||
package model
|
||||
|
||||
type Device struct {
|
||||
|
||||
}
|
7
main.go
Normal file
7
main.go
Normal file
|
@ -0,0 +1,7 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println("coucou")
|
||||
}
|
Loading…
Reference in a new issue