kea-manage/lib/database/database.go

10 lines
156 B
Go
Raw Normal View History

package database
2024-09-22 02:02:02 +00:00
import (
"git.staur.ca/stobbsm/kea-manage/ipv4/reservation"
)
type StoreV4 interface {
InsertResV4(*reservation.ReservationV4) error
}