Integrated Fantastic coffie (decaffeinated) base version

This commit is contained in:
Marco Realacci 2022-11-16 23:46:24 +01:00
parent 2fc5535f0f
commit 94036c4831
482 changed files with 476112 additions and 0 deletions

View file

@ -0,0 +1,12 @@
//go:build !webui
package main
import (
"net/http"
)
// registerWebUI is an empty stub because `webui` tag has not been specified.
func registerWebUI(hdl http.Handler) (http.Handler, error) {
return hdl, nil
}