Versions in this module Expand all Collapse all v0 v0.2.0 Dec 1, 2022 v0.1.0 Dec 1, 2022 Changes in this version + type Actor interface + Description func() string + RunAction func(ctx context.Context, value string) error + func FuncActor(description string, actor func(ctx context.Context, value string) error) Actor + type Option func(s *Server) + func WithLogger(l goka.Logger) Option + type Server struct + func NewServer(basePath string, router *mux.Router, opts ...Option) *Server + func (s *Server) AttachAction(name string, actor Actor) error + func (s *Server) AttachFuncAction(name string, description string, ...) error + func (s *Server) BasePath() string