9b0b6b1ecf
- ntfy - keyserver - webhook - webserver functional modules.
16 lines
259 B
Go
16 lines
259 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
// Module represents a self-contained feature of varde.
|
|
type Module interface {
|
|
Name() string
|
|
RegisterRoutes(r *mux.Router)
|
|
Start(ctx context.Context) error
|
|
Stop(ctx context.Context) error
|
|
}
|