ref: 067fdc804453a63dc7bcf9d85b9c3e25681928bd
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 }