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