ref: 0c0404e806613648f9c292ff8bd86d8f652290b8
dir: /offers.go/
package plugins import "github.com/olmaxmedical/olmax_go/router" // MakeOffer - Request a time slot with doctor const MakeOffer router.PluginMask = 1 << 10 func init() { b := &router.Plugin{ Name: "offer", Run: nil, Validate: offer, } router.AddPlugin(b, MakeOffer) } func offer(s *router.Request) error { return nil }