go_subnetter/netsplit/funcs_subnetsplitter.go
2025-01-31 17:18:35 -05:00

15 lines
289 B
Go

package netsplit
import (
"go4.org/netipx"
"net/netip"
)
// Split splits the network defined in a SubnetSplitter alongside its configuration and performs the subnetting.
func (s *SubnetSplitter) Split() (nets []*netip.Prefix, remaining *netipx.IPSet, err error) {
// TODO
return
}