mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-01 10:40:30 -05:00
* bump dependencies Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> * bump reva and add config options Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de> --------- Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
16 lines
295 B
Go
16 lines
295 B
Go
// Package server provides an API gateway server which handles inbound requests
|
|
package server
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
// Server serves api requests.
|
|
type Server interface {
|
|
Address() string
|
|
Init(opts ...Option) error
|
|
Handle(path string, handler http.Handler)
|
|
Start() error
|
|
Stop() error
|
|
}
|