micro--go-micro
1db36357d5
Run tests / Test repo (push) Has been cancelled
* feat(logger): add logger option to all components * fix: refactor api/rpc.go * fix: refactor api/stream.go * fix: api/options.go comment * fix(logger): do not use logger.Helper internally * fix(logger): fix comments * fix(logger): use level.Enabled method * fix: rename mlogger to log * fix: run go fmt * fix: log level * fix: factories Co-authored-by: Mohamed MHAMDI <mmhamdi@hubside.com> Co-authored-by: Davincible <david.brouwer.99@gmail.com>
48 行
1008 B
Go
48 行
1008 B
Go
// Package web provides web based micro services
|
|
package web
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// Service is a web service with service discovery built in
|
|
type Service interface {
|
|
Client() *http.Client
|
|
Init(opts ...Option) error
|
|
Options() Options
|
|
Handle(pattern string, handler http.Handler)
|
|
HandleFunc(pattern string, handler func(http.ResponseWriter, *http.Request))
|
|
Start() error
|
|
Stop() error
|
|
Run() error
|
|
}
|
|
|
|
// Option for web
|
|
type Option func(o *Options)
|
|
|
|
// Web basic Defaults
|
|
var (
|
|
// For serving
|
|
DefaultName = "go-web"
|
|
DefaultVersion = "latest"
|
|
DefaultId = uuid.New().String()
|
|
DefaultAddress = ":0"
|
|
|
|
// for registration
|
|
DefaultRegisterTTL = time.Second * 90
|
|
DefaultRegisterInterval = time.Second * 30
|
|
|
|
// static directory
|
|
DefaultStaticDir = "html"
|
|
DefaultRegisterCheck = func(context.Context) error { return nil }
|
|
)
|
|
|
|
// NewService returns a new web.Service
|
|
func NewService(opts ...Option) Service {
|
|
return newService(opts...)
|
|
}
|