blob: 6d3a19dd89d875f997e188f8f45797c81266be7b [file] [log] [blame]
// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package relui
import (
"embed"
)
// static is our static web server content.
//
//go:embed static
var static embed.FS
// templates are our template files.
//
//go:embed templates
var templates embed.FS
// migrations are database migration SQL files generated by
// golang-migrate.
//
//go:embed migrations
var migrations embed.FS