1//go:build !builtinassets 2 3package ui 4 5import ( 6 "net/http" 7 "path/filepath" 8) 9 10// Assets contains the UI's assets. 11func Assets() http.FileSystem { 12 assetsDir := filepath.Join(".", "web", "ui", "build") 13 return http.Dir(assetsDir) 14} 15 16