mirror of
https://github.com/garethgeorge/backrest.git
synced 2026-05-29 16:00:57 +00:00
13 lines
301 B
Go
13 lines
301 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
//go:generate sh -c "rm -rf ./webui/dist-windows && npm --prefix webui run build-windows && gzip ./webui/dist-windows/*"
|
|
|
|
package main
|
|
|
|
import rice "github.com/GeertJohan/go.rice"
|
|
|
|
func WebUIBox() (*rice.Box, error) {
|
|
return rice.FindBox("webui/dist-windows")
|
|
}
|