diff --git a/common/models/router.go b/common/models/router.go deleted file mode 100644 index 1f42032c..00000000 --- a/common/models/router.go +++ /dev/null @@ -1,14 +0,0 @@ -package models - -type Routers struct { - List []Router -} - -type Router struct { - HttpMethod, RelativePath string -} - -func (e *Routers) Add(HttpMethod, RelativePath string) *Routers { - e.List = append(e.List, Router{HttpMethod: HttpMethod,RelativePath: RelativePath}) - return e -} \ No newline at end of file