mirror of
https://github.com/notherealmarco/WASAPhoto.git
synced 2025-03-14 14:16:15 +01:00
13 lines
215 B
Go
13 lines
215 B
Go
|
//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
|
||
|
}
|