mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
26 lines
717 B
Go
26 lines
717 B
Go
// Copyright 2022 Molecula Corp. (DBA FeatureBase).
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
// 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"
|
|
|
|
pilosa "github.com/featurebasedb/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()
|
|
}
|