Skip to content

Instantly share code, notes, and snippets.

View aleoli's full-sized avatar

Alessandro Olivero aleoli

View GitHub Profile
@aleoli
aleoli / ipam.go
Last active December 27, 2023 09:19
In-Memory simple IPAM
package ipam
import (
"fmt"
"net"
"sync"
)
// IPAM is the struct that manages the IPAM.
type IPAM struct {