ref: cc4256ab632d02991ff81c246ed8e4940f717c4a
dir: /offers.go/
package plugins import "github.com/olmaxmedical/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 }