table boiler plate
This commit is contained in:
parent
9d18b81f81
commit
497269f63c
19
rtable/table.go
Normal file
19
rtable/table.go
Normal 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) {
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user