mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
25 lines
668 B
Go
25 lines
668 B
Go
// Copyright 2021 Molecula Corp. All rights reserved.
|
|
//
|
|
// Package statik contains static assets for the Lattice UI. `go generate` or
|
|
// `make generate-statik` will produce statik.go, which is ignored by git.
|
|
//
|
|
//go:generate statik -src=../lattice/build -dest=../
|
|
package statik
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/molecula/featurebase/v3"
|
|
"github.com/rakyll/statik/fs"
|
|
)
|
|
|
|
// Ensure nopFileSystem implements interface.
|
|
var _ pilosa.FileSystem = &FileSystem{}
|
|
|
|
// FileSystem represents a static FileSystem.
|
|
type FileSystem struct{}
|
|
|
|
// New is a statik implementation of FileSystem New method.
|
|
func (s *FileSystem) New() (http.FileSystem, error) {
|
|
return fs.New()
|
|
}
|