32 lines
577 B
Go
32 lines
577 B
Go
package database
|
|
|
|
import (
|
|
proto "git.xeserv.us/xena/route/proto"
|
|
"github.com/Xe/ln"
|
|
)
|
|
|
|
// Route is a single HTTP route.
|
|
type Route struct {
|
|
ID string `storm:"id"`
|
|
Creator string
|
|
Hostname string `storm:"unique"`
|
|
}
|
|
|
|
// F https://godoc.org/github.com/Xe/ln#F
|
|
func (r Route) F() ln.F {
|
|
return ln.F{
|
|
"route-id": r.ID,
|
|
"route-creator": r.Creator,
|
|
"route-hostname": r.Hostname,
|
|
}
|
|
}
|
|
|
|
// AsProto converts this into the protobuf.
|
|
func (r Route) AsProto() *proto.Route {
|
|
return &proto.Route{
|
|
Id: r.ID,
|
|
Creator: r.Creator,
|
|
Host: r.Hostname,
|
|
}
|
|
}
|