174644b63c
add openapi infra * add openapi infra Includes generated stubs and all deps * generatetolocation * basesetupoffunctionsandclient * round1controllertests * passintegrationtests * cleanupfromfullsuite * storedjson * fixjsonyaml * fixtests Approved-by: Michael McGuinness
13 lines
160 B
Go
13 lines
160 B
Go
package swaggerFiles
|
|
|
|
import (
|
|
"embed"
|
|
"io/fs"
|
|
)
|
|
|
|
//go:embed dist/*
|
|
var dist embed.FS
|
|
|
|
// FS holds embedded swagger ui files
|
|
var FS, _ = fs.Sub(dist, "dist")
|