Server data model

This commit is contained in:
Roberto Abdelkader Martínez Pérez
2019-10-04 16:28:06 +02:00
parent bbda43b193
commit 97b8c3fce4
2 changed files with 23 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package model
type Route struct {
Id string `json:"id"`
Method string `json:"method"`
Pattern string `json:"url_pattern"`
Entrypoint string `json:"entrypoint"`
Command string `json:"command"`
}