-
Notifications
You must be signed in to change notification settings - Fork 1
/
b0xfile__swagger-initializer.js.go
30 lines (23 loc) · 2.49 KB
/
b0xfile__swagger-initializer.js.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Code generaTed by fileb0x at "2022-09-01 15:24:42.108376 +0300 +03 m=+0.184034089" from config file "b0x.yaml" DO NOT EDIT.
// modified(2022-09-01 13:54:08.671292838 +0300 +03)
// original path: swagger-ui/swagger-initializer.js
package static
import (
"os"
)
// FileSwaggerInitializerJs is "/swagger-initializer.js"
var FileSwaggerInitializerJs = []byte("\x77\x69\x6e\x64\x6f\x77\x2e\x6f\x6e\x6c\x6f\x61\x64\x20\x3d\x20\x66\x75\x6e\x63\x74\x69\x6f\x6e\x20\x28\x29\x20\x7b\x0a\x20\x20\x2f\x2f\x3c\x65\x64\x69\x74\x6f\x72\x2d\x66\x6f\x6c\x64\x20\x64\x65\x73\x63\x3d\x22\x43\x68\x61\x6e\x67\x65\x61\x62\x6c\x65\x20\x43\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x69\x6f\x6e\x20\x42\x6c\x6f\x63\x6b\x22\x3e\x0a\x0a\x20\x20\x2f\x2f\x20\x74\x68\x65\x20\x66\x6f\x6c\x6c\x6f\x77\x69\x6e\x67\x20\x6c\x69\x6e\x65\x73\x20\x77\x69\x6c\x6c\x20\x62\x65\x20\x72\x65\x70\x6c\x61\x63\x65\x64\x20\x62\x79\x20\x64\x6f\x63\x6b\x65\x72\x2f\x63\x6f\x6e\x66\x69\x67\x75\x72\x61\x74\x6f\x72\x2c\x20\x77\x68\x65\x6e\x20\x69\x74\x20\x72\x75\x6e\x73\x20\x69\x6e\x20\x61\x20\x64\x6f\x63\x6b\x65\x72\x2d\x63\x6f\x6e\x74\x61\x69\x6e\x65\x72\x0a\x20\x20\x77\x69\x6e\x64\x6f\x77\x2e\x75\x69\x20\x3d\x20\x53\x77\x61\x67\x67\x65\x72\x55\x49\x42\x75\x6e\x64\x6c\x65\x28\x7b\x0a\x20\x20\x20\x20\x75\x72\x6c\x3a\x20\x22\x64\x6f\x63\x2e\x6a\x73\x6f\x6e\x22\x2c\x0a\x20\x20\x20\x20\x64\x6f\x6d\x5f\x69\x64\x3a\x20\x22\x23\x73\x77\x61\x67\x67\x65\x72\x2d\x75\x69\x22\x2c\x0a\x20\x20\x20\x20\x64\x65\x65\x70\x4c\x69\x6e\x6b\x69\x6e\x67\x3a\x20\x74\x72\x75\x65\x2c\x0a\x20\x20\x20\x20\x70\x72\x65\x73\x65\x74\x73\x3a\x20\x5b\x53\x77\x61\x67\x67\x65\x72\x55\x49\x42\x75\x6e\x64\x6c\x65\x2e\x70\x72\x65\x73\x65\x74\x73\x2e\x61\x70\x69\x73\x2c\x20\x53\x77\x61\x67\x67\x65\x72\x55\x49\x53\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x50\x72\x65\x73\x65\x74\x5d\x2c\x0a\x20\x20\x20\x20\x70\x6c\x75\x67\x69\x6e\x73\x3a\x20\x5b\x53\x77\x61\x67\x67\x65\x72\x55\x49\x42\x75\x6e\x64\x6c\x65\x2e\x70\x6c\x75\x67\x69\x6e\x73\x2e\x44\x6f\x77\x6e\x6c\x6f\x61\x64\x55\x72\x6c\x5d\x2c\x0a\x20\x20\x20\x20\x6c\x61\x79\x6f\x75\x74\x3a\x20\x22\x53\x74\x61\x6e\x64\x61\x6c\x6f\x6e\x65\x4c\x61\x79\x6f\x75\x74\x22\x2c\x0a\x20\x20\x7d\x29\x3b\x0a\x0a\x20\x20\x2f\x2f\x3c\x2f\x65\x64\x69\x74\x6f\x72\x2d\x66\x6f\x6c\x64\x3e\x0a\x7d\x3b\x0a")
func init() {
f, err := FS.OpenFile(CTX, "/swagger-initializer.js", os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0777)
if err != nil {
panic(err)
}
_, err = f.Write(FileSwaggerInitializerJs)
if err != nil {
panic(err)
}
err = f.Close()
if err != nil {
panic(err)
}
}