table boiler plate

This commit is contained in:
Jim Colderwood 2024-04-14 18:14:20 +01:00
parent 9d18b81f81
commit 497269f63c

19
rtable/table.go Normal file
View File

@ -0,0 +1,19 @@
package rtable
import "github.com/crip/ripv2"
func Add(r *ripv2.RIP) {
if check(r) {
return
}
}
func check(r *ripv2.RIP) bool {
return false
}
func Remove(r *ripv2.RIP) {
if check(r) {
}
}