Table.Add is now Table.Create. Insesrt event is now Create event.

This commit is contained in:
Milos Gajdos
2019-07-10 17:46:22 +01:00
parent 86dfa82dfa
commit 8f5aed707e
5 changed files with 24 additions and 43 deletions

View File

@@ -13,8 +13,8 @@ var (
// Table defines routing table interface
type Table interface {
// Add adds new route to the routing table
Add(Route) error
// Create new route in the routing table
Create(Route) error
// Delete deletes existing route from the routing table
Delete(Route) error
// Update updates route in the routing table