1
0
mirror of https://github.com/NginxProxyManager/nginx-proxy-manager.git synced 2025-07-13 16:21:46 +03:00
Files
Jamie Curnow 29990110b1 Convert db backend to use Gorm, with basis for support
for Mysql and Postgres in addition to existing Sqlite
2023-05-26 11:37:39 +10:00

24 lines
434 B
Go

package embed
import "embed"
// APIDocFiles contain all the files used for swagger schema generation
//
//go:embed api_docs
var APIDocFiles embed.FS
// Assets are frontend assets served from within this app
//
//go:embed assets
var Assets embed.FS
// MigrationFiles are database migrations
//
//go:embed migrations
var MigrationFiles embed.FS
// NginxFiles hold nginx config templates
//
//go:embed nginx
var NginxFiles embed.FS