ref: 07b5f49b34d8b32887b18ff79b47cb863756da1d
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 }