Files
kapow/internal/server/model/route.go
Roberto Abdelkader Martínez Pérez 97b8c3fce4 Server data model
2019-10-04 16:28:19 +02:00

10 lines
218 B
Go

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"`
}