mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-28 19:40:28 +00:00
16 lines
344 B
Go
16 lines
344 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/*.sql
|
|
var MigrationFiles embed.FS
|