Thom Seddon 8b3a950162
Add logout endpoint (#107)
Add logout endpoint that clears the auth cookie + optional "logout-redirect" config option, to which, when set, the user will be redirected.
2020-06-03 14:00:47 +01:00

9 lines
114 B
Makefile

format:
gofmt -w -s internal/*.go internal/provider/*.go cmd/*.go
test:
go test -v ./...
.PHONY: format test