blob: d00b0191b41c729f1546e4a86b61843dc9ff41d2 [file] [log] [blame]
package gateway
// TODO(mattr): This is a temporary placeholder to get compiles basically
// working on a mac. Obviously a real implementation is needed.
func New(proximityService string, forceClient bool) (*Service, error) {
return &Service{}, nil
}
type Service struct {
}
// Stop stops the gateway service.
func (s *Service) Stop() {
}