diff --git a/core/core.go b/core/core.go index b54487c..49d1a59 100644 --- a/core/core.go +++ b/core/core.go @@ -11,15 +11,11 @@ import ( const ( // run mode list - InSerialMode RunMode = iota + InSerialMode runMode = iota InConcurrentMode InSerialDebugMode InConcurrentDebugMode - // options key list - OptSinkPath = "sinkPath" - OptDefaultTag = "defaultTag" - // generator Names GeneratorGin = "gin" GeneratorChi = "chi" @@ -40,36 +36,74 @@ var ( // parsers parser list parsers = make(map[string]Parser, 1) - // InDebug whether in debug mode - InDebug bool + // inDebug whether in debug mode + inDebug bool ) -// RunMode indicate process mode (InSerialMode | InSerialDebugMode | InConcurrentMode | InConcurrentDebugMode) -type RunMode uint8 - -// Opts use for generator or parser init -type InitOpts = map[string]string +// runMode indicate process mode (InSerialMode | InSerialDebugMode | InConcurrentMode | InConcurrentDebugMode) +type runMode uint8 -// Options generator options -type Options struct { - // RunMode set run mode (InSerialMode Or InConcurrentMode). - // Default is InSerialMode if not set explicit. - RunMode RunMode +// InitOpts use for generator or parser init +type InitOpts struct { + RunMode runMode GeneratorName string ParserName string - GeneratorOpts InitOpts - ParserOpts InitOpts + SinkPath string + DefaultTag string } -// Crate component common info -type Crate interface { - Name() string - Init(opts InitOpts) error +// ParserOpts used for initial parser +type ParserOpts struct { + DefaultTag string +} + +// GeneratorOpts used for initial generator +type GeneratorOpts struct { + SinkPath string +} + +// Option pass option to custom run behavior +type Option interface { + apply(opts *InitOpts) +} + +// Options generator options +type Options []Option + +// InitOpts return an initOpts instance +func (opts Options) InitOpts() *InitOpts { + res := defaultInitOpts() + for _, opt := range opts { + opt.apply(res) + } + return res +} + +// ParserOpts return a ParserOpts instance +func (opts *InitOpts) ParserOpts() *ParserOpts { + return &ParserOpts{ + DefaultTag: opts.DefaultTag, + } +} + +// GeneratorOpts return a GeneratorOpts +func (opts *InitOpts) GeneratorOpts() *GeneratorOpts { + return &GeneratorOpts{ + SinkPath: opts.SinkPath, + } +} + +// optFunc used for convert function to Option interface +type optFunc func(opts *InitOpts) + +func (f optFunc) apply(opts *InitOpts) { + f(opts) } // Parser parse entries type Parser interface { - Crate + Name() string + Init(opts *ParserOpts) error Parse(entries []interface{}) (Descriptors, error) ParseContext(ctx MirCtx, entries []interface{}) Clone() Parser @@ -77,7 +111,8 @@ type Parser interface { // Generator generate interface code for engine type Generator interface { - Crate + Name() string + Init(opts *GeneratorOpts) error Generate(Descriptors) error GenerateContext(ctx MirCtx) Clone() Generator @@ -94,7 +129,8 @@ type MirCtx interface { Pipe() (<-chan *IfaceDescriptor, chan<- *IfaceDescriptor) } -func (m RunMode) String() string { +// String runMode describe +func (m runMode) String() string { res := "not support mode" switch m { case InSerialMode: @@ -109,6 +145,41 @@ func (m RunMode) String() string { return res } +// RunMode set run mode option +func RunMode(mode runMode) Option { + return optFunc(func(opts *InitOpts) { + opts.RunMode = mode + }) +} + +// GeneratorName set generator name option +func GeneratorName(name string) Option { + return optFunc(func(opts *InitOpts) { + opts.GeneratorName = name + }) +} + +// ParserName set parser name option +func ParserName(name string) Option { + return optFunc(func(opts *InitOpts) { + opts.ParserName = name + }) +} + +// SinkPath set generated code out directory +func SinkPath(path string) Option { + return optFunc(func(opts *InitOpts) { + opts.SinkPath = path + }) +} + +// DefaultTag set parser's default struct field tag string key +func DefaultTag(tag string) Option { + return optFunc(func(opts *InitOpts) { + opts.DefaultTag = tag + }) +} + // RegisterGenerators register generators func RegisterGenerators(gs ...Generator) { for _, g := range gs { @@ -127,17 +198,6 @@ func RegisterParsers(ps ...Parser) { } } -// DefaultOptions get a default options -func DefaultOptions() *Options { - return &Options{ - GeneratorName: GeneratorGin, - ParserName: ParserStructTag, - GeneratorOpts: InitOpts{ - OptSinkPath: "./gen", - }, - } -} - // GeneratorByName get a generator by name func GeneratorByName(name string) Generator { return generators[name] @@ -160,7 +220,36 @@ func DefaultParser() Parser { // Logus print log info func Logus(format string, v ...interface{}) { - if InDebug { + if inDebug { log.Printf("[mir] "+format, v...) } } + +// Init initial from Options and return an InitOpts instance +func Init(opts Options) *InitOpts { + var initOpts *InitOpts + if opts == nil { + initOpts = defaultInitOpts() + } else { + initOpts = opts.InitOpts() + } + + switch initOpts.RunMode { + case InSerialDebugMode, InConcurrentDebugMode: + inDebug = true + default: + inDebug = false + } + + return initOpts +} + +func defaultInitOpts() *InitOpts { + return &InitOpts{ + RunMode: InSerialMode, + GeneratorName: GeneratorGin, + ParserName: ParserStructTag, + SinkPath: ".gen", + DefaultTag: "mir", + } +} diff --git a/engine/engine.go b/engine/engine.go index fdcbc71..dd91dc7 100644 --- a/engine/engine.go +++ b/engine/engine.go @@ -36,48 +36,38 @@ func AddEntries(entries ...interface{}) { } // Generate generate interface code from mir's iface entry -func Generate(opts *core.Options, entries ...interface{}) (err error) { +func Generate(opts core.Options, entries ...interface{}) (err error) { mu.Lock() defer mu.Unlock() - if opts == nil { - return errors.New("options is nil") - } - addEntries(entries...) if len(mirEntries) == 0 { return errors.New("mir entries is empty maybe need add entries first") } - p := core.ParserByName(opts.ParserName) + initOpts := core.Init(opts) + p := core.ParserByName(initOpts.ParserName) // use default parser when not set parser name from options if p == nil { p = core.DefaultParser() } - if err = p.Init(opts.ParserOpts); err != nil { + if err = p.Init(initOpts.ParserOpts()); err != nil { return } - g := core.GeneratorByName(opts.GeneratorName) + g := core.GeneratorByName(initOpts.GeneratorName) if g == nil { - return fmt.Errorf("unknow generators that name %s", opts.GeneratorName) + return fmt.Errorf("unknow generators that name %s", initOpts.GeneratorName) } - if err = g.Init(opts.GeneratorOpts); err != nil { + if err = g.Init(initOpts.GeneratorOpts()); err != nil { return } - switch opts.RunMode { - case core.InSerialDebugMode: - core.InDebug = true - core.Logus("run in %s", opts.RunMode) - fallthrough - case core.InSerialMode: + core.Logus("run in %s", initOpts.RunMode) + switch initOpts.RunMode { + case core.InSerialDebugMode, core.InSerialMode: err = doInSerial(p, g, mirEntries) - case core.InConcurrentDebugMode: - core.InDebug = true - core.Logus("run in %s", opts.RunMode) - fallthrough - case core.InConcurrentMode: + case core.InConcurrentDebugMode, core.InConcurrentMode: err = doInConcurrent(p, g, mirEntries) } return err diff --git a/engine/engine_test.go b/engine/engine_test.go index 0c7abd1..e10e8d3 100644 --- a/engine/engine_test.go +++ b/engine/engine_test.go @@ -2,18 +2,10 @@ package engine import ( "testing" - - "github.com/alimy/mir/v2/core" ) func TestGenerate(t *testing.T) { - if err := Generate(nil); err == nil { - t.Error("want an error but not") - } - if err := Generate(core.DefaultOptions()); err == nil { - t.Error("want an error but not") - } - if err := Generate(core.DefaultOptions(), nil); err != nil { + if err := Generate(nil, nil); err != nil { t.Error("don't want an error but not") } AddEntry(nil) diff --git a/internal/generator/generator.go b/internal/generator/generator.go index 6a0fd11..568cd64 100644 --- a/internal/generator/generator.go +++ b/internal/generator/generator.go @@ -18,10 +18,6 @@ import ( "github.com/alimy/mir/v2/internal/container" ) -var ( - errNotExistSinkPath = errors.New("not exist output path") -) - func init() { core.RegisterGenerators( &mirGenerator{name: core.GeneratorGin}, @@ -63,14 +59,12 @@ func (g *mirGenerator) Name() string { } // Init init generator -func (g *mirGenerator) Init(opts core.InitOpts) (err error) { - if len(opts) != 0 { - if sp, exist := opts[core.OptSinkPath]; exist { - g.sinkPath, err = evalSinkPath(sp) - return - } +func (g *mirGenerator) Init(opts *core.GeneratorOpts) (err error) { + if opts == nil { + return errors.New("init opts is nil") } - return errNotExistSinkPath + g.sinkPath, err = evalSinkPath(opts.SinkPath) + return } // Generate serial generate interface code diff --git a/internal/parser/parser.go b/internal/parser/parser.go index 5063692..6a910ba 100644 --- a/internal/parser/parser.go +++ b/internal/parser/parser.go @@ -27,10 +27,11 @@ func (p *mirParser) Name() string { } // Init init parser -func (p *mirParser) Init(opts core.InitOpts) error { - if len(opts) != 0 { - p.tagName = opts[core.OptDefaultTag] +func (p *mirParser) Init(opts *core.ParserOpts) error { + if opts == nil { + return errors.New("init opts is nil") } + p.tagName = opts.DefaultTag if p.tagName == "" { p.tagName = defaultTag } diff --git a/mirc/cmd/templates/chi_go_mod.tmpl b/mirc/cmd/templates/chi_go_mod.tmpl index 762d8da..7041a5c 100644 --- a/mirc/cmd/templates/chi_go_mod.tmpl +++ b/mirc/cmd/templates/chi_go_mod.tmpl @@ -3,6 +3,6 @@ module {{ .PkgName }} go 1.12 require ( - github.com/alimy/mir/v2 v2.2.0 + github.com/alimy/mir/v2 v2.3.0 github.com/go-chi/chi v4.0.3+incompatible ) diff --git a/mirc/cmd/templates/chi_mirc_main.tmpl b/mirc/cmd/templates/chi_mirc_main.tmpl index 31a95b8..dab3536 100644 --- a/mirc/cmd/templates/chi_mirc_main.tmpl +++ b/mirc/cmd/templates/chi_mirc_main.tmpl @@ -14,12 +14,10 @@ import ( //go:generate go run main.go func main() { log.Println("generate code start") - opts := &core.Options{ - RunMode: core.InSerialMode, - GeneratorName: core.GeneratorChi, - GeneratorOpts: core.InitOpts{ - core.OptSinkPath: "./gen", - }, + opts := core.Options{ + core.RunMode(core.InSerialMode), + core.GeneratorName(core.GeneratorChi), + core.SinkPath("./gen"), } if err := engine.Generate(opts); err != nil { log.Fatal(err) diff --git a/mirc/cmd/templates/echo_go_mod.tmpl b/mirc/cmd/templates/echo_go_mod.tmpl index 49c6d30..083df58 100644 --- a/mirc/cmd/templates/echo_go_mod.tmpl +++ b/mirc/cmd/templates/echo_go_mod.tmpl @@ -3,6 +3,6 @@ module {{ .PkgName }} go 1.12 require ( - github.com/alimy/mir/v2 v2.2.0 + github.com/alimy/mir/v2 v2.3.0 github.com/labstack/echo/v4 v4.1.15 ) diff --git a/mirc/cmd/templates/echo_mirc_main.tmpl b/mirc/cmd/templates/echo_mirc_main.tmpl index 4338a14..79e78f2 100644 --- a/mirc/cmd/templates/echo_mirc_main.tmpl +++ b/mirc/cmd/templates/echo_mirc_main.tmpl @@ -14,12 +14,10 @@ import ( //go:generate go run main.go func main() { log.Println("generate code start") - opts := &core.Options{ - RunMode: core.InSerialMode, - GeneratorName: core.GeneratorEcho, - GeneratorOpts: core.InitOpts{ - core.OptSinkPath: "./gen", - }, + opts := core.Options{ + core.RunMode(core.InSerialMode), + core.GeneratorName(core.GeneratorEcho), + core.SinkPath("./gen"), } if err := engine.Generate(opts); err != nil { log.Fatal(err) diff --git a/mirc/cmd/templates/gin_go_mod.tmpl b/mirc/cmd/templates/gin_go_mod.tmpl index 01053df..6ff1a55 100644 --- a/mirc/cmd/templates/gin_go_mod.tmpl +++ b/mirc/cmd/templates/gin_go_mod.tmpl @@ -3,6 +3,6 @@ module {{ .PkgName }} go 1.12 require ( - github.com/alimy/mir/v2 v2.2.0 + github.com/alimy/mir/v2 v2.3.0 github.com/gin-gonic/gin v1.5.0 ) diff --git a/mirc/cmd/templates/gin_mirc_main.tmpl b/mirc/cmd/templates/gin_mirc_main.tmpl index 0ba515d..df4c39c 100644 --- a/mirc/cmd/templates/gin_mirc_main.tmpl +++ b/mirc/cmd/templates/gin_mirc_main.tmpl @@ -14,12 +14,10 @@ import ( //go:generate go run main.go func main() { log.Println("generate code start") - opts := &core.Options{ - RunMode: core.InSerialMode, - GeneratorName: core.GeneratorGin, - GeneratorOpts: core.InitOpts{ - core.OptSinkPath: "./gen", - }, + opts := core.Options{ + core.RunMode(core.InSerialMode), + core.GeneratorName(core.GeneratorGin), + core.SinkPath("./gen"), } if err := engine.Generate(opts); err != nil { log.Fatal(err) diff --git a/mirc/cmd/templates/httprouter_go_mod.tmpl b/mirc/cmd/templates/httprouter_go_mod.tmpl index db98641..7f319d8 100644 --- a/mirc/cmd/templates/httprouter_go_mod.tmpl +++ b/mirc/cmd/templates/httprouter_go_mod.tmpl @@ -3,6 +3,6 @@ module {{ .PkgName }} go 1.12 require ( - github.com/alimy/mir/v2 v2.2.0 + github.com/alimy/mir/v2 v2.3.0 github.com/julienschmidt/httprouter v1.3.0 ) diff --git a/mirc/cmd/templates/httprouter_mirc_main.tmpl b/mirc/cmd/templates/httprouter_mirc_main.tmpl index eb979cf..df4f8a1 100644 --- a/mirc/cmd/templates/httprouter_mirc_main.tmpl +++ b/mirc/cmd/templates/httprouter_mirc_main.tmpl @@ -14,12 +14,10 @@ import ( //go:generate go run main.go func main() { log.Println("generate code start") - opts := &core.Options{ - RunMode: core.InSerialMode, - GeneratorName: core.GeneratorHttpRouter, - GeneratorOpts: core.InitOpts{ - core.OptSinkPath: "./gen", - }, + opts := core.Options{ + core.RunMode(core.InSerialMode), + core.GeneratorName(core.GeneratorHttpRouter), + core.SinkPath("./gen"), } if err := engine.Generate(opts); err != nil { log.Fatal(err) diff --git a/mirc/cmd/templates/iris_go_mod.tmpl b/mirc/cmd/templates/iris_go_mod.tmpl index f7d5b12..89bc501 100644 --- a/mirc/cmd/templates/iris_go_mod.tmpl +++ b/mirc/cmd/templates/iris_go_mod.tmpl @@ -3,6 +3,6 @@ module {{ .PkgName }} go 1.12 require ( - github.com/alimy/mir/v2 v2.2.0 + github.com/alimy/mir/v2 v2.3.0 github.com/kataras/iris/v12 v12.1.8 ) diff --git a/mirc/cmd/templates/iris_mirc_main.tmpl b/mirc/cmd/templates/iris_mirc_main.tmpl index a85210f..6b7effb 100644 --- a/mirc/cmd/templates/iris_mirc_main.tmpl +++ b/mirc/cmd/templates/iris_mirc_main.tmpl @@ -14,12 +14,10 @@ import ( //go:generate go run main.go func main() { log.Println("generate code start") - opts := &core.Options{ - RunMode: core.InSerialMode, - GeneratorName: core.GeneratorIris, - GeneratorOpts: core.InitOpts{ - core.OptSinkPath: "./gen", - }, + opts := core.Options{ + core.RunMode(core.InSerialMode), + core.GeneratorName(core.GeneratorIris), + core.SinkPath("./gen"), } if err := engine.Generate(opts); err != nil { log.Fatal(err) diff --git a/mirc/cmd/templates/macaron_go_mod.tmpl b/mirc/cmd/templates/macaron_go_mod.tmpl index e634069..883f716 100644 --- a/mirc/cmd/templates/macaron_go_mod.tmpl +++ b/mirc/cmd/templates/macaron_go_mod.tmpl @@ -3,6 +3,6 @@ module {{ .PkgName }} go 1.12 require ( - github.com/alimy/mir/v2 v2.2.0 + github.com/alimy/mir/v2 v2.3.0 gopkg.in/macaron.v1 v1.3.5 ) diff --git a/mirc/cmd/templates/macaron_mirc_main.tmpl b/mirc/cmd/templates/macaron_mirc_main.tmpl index 169fae0..4a2c666 100644 --- a/mirc/cmd/templates/macaron_mirc_main.tmpl +++ b/mirc/cmd/templates/macaron_mirc_main.tmpl @@ -14,12 +14,10 @@ import ( //go:generate go run main.go func main() { log.Println("generate code start") - opts := &core.Options{ - RunMode: core.InSerialMode, - GeneratorName: core.GeneratorMacaron, - GeneratorOpts: core.InitOpts{ - core.OptSinkPath: "./gen", - }, + opts := core.Options{ + core.RunMode(core.InSerialMode), + core.GeneratorName(core.GeneratorMacaron), + core.SinkPath("./gen"), } if err := engine.Generate(opts); err != nil { log.Fatal(err) diff --git a/mirc/cmd/templates/mux_go_mod.tmpl b/mirc/cmd/templates/mux_go_mod.tmpl index d106e2f..06dd0bc 100644 --- a/mirc/cmd/templates/mux_go_mod.tmpl +++ b/mirc/cmd/templates/mux_go_mod.tmpl @@ -3,6 +3,6 @@ module {{ .PkgName }} go 1.12 require ( - github.com/alimy/mir/v2 v2.2.0 + github.com/alimy/mir/v2 v2.3.0 github.com/gorilla/mux v1.7.4 ) diff --git a/mirc/cmd/templates/mux_mirc_main.tmpl b/mirc/cmd/templates/mux_mirc_main.tmpl index 72ccf9d..df07197 100644 --- a/mirc/cmd/templates/mux_mirc_main.tmpl +++ b/mirc/cmd/templates/mux_mirc_main.tmpl @@ -14,12 +14,10 @@ import ( //go:generate go run main.go func main() { log.Println("generate code start") - opts := &core.Options{ - RunMode: core.InSerialMode, - GeneratorName: core.GeneratorMux, - GeneratorOpts: core.InitOpts{ - core.OptSinkPath: "./gen", - }, + opts := core.Options{ + core.RunMode(core.InSerialMode), + core.GeneratorName(core.GeneratorMux), + core.SinkPath("./gen"), } if err := engine.Generate(opts); err != nil { log.Fatal(err) diff --git a/mirc/cmd/templates_gen.go b/mirc/cmd/templates_gen.go index 434bad1..e4c78c2 100644 --- a/mirc/cmd/templates_gen.go +++ b/mirc/cmd/templates_gen.go @@ -2,44 +2,44 @@ // sources: // templates/chi_go_mod.tmpl (125B) // templates/chi_main.tmpl (372B) -// templates/chi_mirc_main.tmpl (629B) +// templates/chi_mirc_main.tmpl (576B) // templates/chi_mirc_routes_site.tmpl (328B) // templates/chi_mirc_routes_site_v1.tmpl (361B) // templates/chi_mirc_routes_site_v2.tmpl (370B) // templates/echo_go_mod.tmpl (119B) // templates/echo_main.tmpl (344B) -// templates/echo_mirc_main.tmpl (630B) +// templates/echo_mirc_main.tmpl (577B) // templates/echo_mirc_routes_site.tmpl (316B) // templates/echo_mirc_routes_site_v1.tmpl (349B) // templates/echo_mirc_routes_site_v2.tmpl (358B) // templates/gin_go_mod.tmpl (115B) // templates/gin_main.tmpl (331B) -// templates/gin_mirc_main.tmpl (629B) +// templates/gin_mirc_main.tmpl (576B) // templates/gin_mirc_routes_site.tmpl (316B) // templates/gin_mirc_routes_site_v1.tmpl (349B) // templates/gin_mirc_routes_site_v2.tmpl (359B) // templates/httprouter_go_mod.tmpl (126B) // templates/httprouter_main.tmpl (402B) -// templates/httprouter_mirc_main.tmpl (636B) +// templates/httprouter_mirc_main.tmpl (583B) // templates/httprouter_mirc_routes_site.tmpl (316B) // templates/httprouter_mirc_routes_site_v1.tmpl (349B) // templates/httprouter_mirc_routes_site_v2.tmpl (358B) // templates/iris_go_mod.tmpl (119B) // templates/iris_main.tmpl (372B) -// templates/iris_mirc_main.tmpl (630B) +// templates/iris_mirc_main.tmpl (577B) // templates/iris_mirc_routes_site.tmpl (323B) // templates/iris_mirc_routes_site_v1.tmpl (356B) // templates/iris_mirc_routes_site_v2.tmpl (365B) // templates/macaron_go_mod.tmpl (110B) // templates/macaron_main.tmpl (282B) -// templates/macaron_mirc_main.tmpl (633B) +// templates/macaron_mirc_main.tmpl (580B) // templates/macaron_mirc_routes_site.tmpl (316B) // templates/macaron_mirc_routes_site_v1.tmpl (349B) // templates/macaron_mirc_routes_site_v2.tmpl (358B) // templates/makefile.tmpl (339B) // templates/mux_go_mod.tmpl (113B) // templates/mux_main.tmpl (374B) -// templates/mux_mirc_main.tmpl (629B) +// templates/mux_mirc_main.tmpl (576B) // templates/mux_mirc_routes_site.tmpl (392B) // templates/mux_mirc_routes_site_v1.tmpl (425B) // templates/mux_mirc_routes_site_v2.tmpl (434B) @@ -113,7 +113,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _chi_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x41\x0e\xc2\x20\x10\x05\xd0\xfd\x9c\xe2\x2f\x35\xc6\xa1\x45\xcf\x61\xbc\x02\x45\x02\x13\x19\x47\x49\x21\x31\x4d\xef\xee\xde\xfd\x53\x7b\xf4\x9a\xb0\x6d\xe0\xfb\x33\xdf\x82\x26\xec\x3b\x51\x36\xcc\x3c\x7b\xa2\x96\x3e\x5d\x5a\xc2\x81\x00\x20\xcb\x5a\xfa\xc2\xd1\xd4\x85\x2a\xfa\x75\x2a\xcd\x0d\x8f\xe1\xd9\xf3\xf4\x4f\xb2\x9d\x63\x11\x17\x8b\x60\x5c\x79\xe2\xcb\x49\x5e\xd1\xf4\x1d\x56\x59\x6a\xa2\x23\xfd\x02\x00\x00\xff\xff\x27\xb9\x14\x8e\x7d\x00\x00\x00" +var _chi_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x41\xae\xc2\x20\x10\x06\xe0\xfd\x9c\xe2\x5f\xbe\x17\xe3\xd0\x52\xcf\x61\xbc\x02\x45\x02\x13\x19\x47\x49\x21\x31\x4d\xef\xee\xde\xfd\xa7\x76\xef\x35\x61\xdf\xc1\xb7\x47\xbe\x06\x4d\x38\x0e\xa2\x6c\x98\x79\xf6\x44\x2d\xbd\xbb\xb4\x84\x3f\x02\x80\x2c\x5b\xe9\x2b\x47\x53\x17\xaa\xe8\xc7\xa9\x34\x37\x3c\x86\xe7\x85\xa7\x5f\x92\xed\x1c\x8b\xb8\x58\x04\xe3\xc2\x13\x2f\x27\x79\x46\xd3\x57\xd8\x64\xad\x89\xfe\xe9\x1b\x00\x00\xff\xff\x2a\x45\xd8\xe7\x7d\x00\x00\x00" func chi_go_modTmplBytes() ([]byte, error) { return bindataRead( @@ -128,8 +128,8 @@ func chi_go_modTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "chi_go_mod.tmpl", size: 125, mode: os.FileMode(0644), modTime: time.Unix(1585130093, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5c, 0x33, 0xa5, 0x8e, 0x18, 0x15, 0x7f, 0x44, 0x37, 0x9, 0x56, 0x3, 0x71, 0x76, 0x23, 0xe5, 0x85, 0x8c, 0xfb, 0x1, 0xc, 0x7d, 0x0, 0x40, 0xd9, 0xaa, 0xc8, 0xed, 0x93, 0xd3, 0x6, 0x2d}} + info := bindataFileInfo{name: "chi_go_mod.tmpl", size: 125, mode: os.FileMode(0644), modTime: time.Unix(1585297533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0x53, 0x7a, 0x6e, 0x4e, 0x1d, 0xf1, 0xe4, 0xcc, 0x68, 0x29, 0x49, 0x6e, 0x47, 0x60, 0xb1, 0xf4, 0xbc, 0xb7, 0x1f, 0x32, 0xce, 0x98, 0xd7, 0xdb, 0x62, 0x15, 0x4b, 0xce, 0xa, 0x84, 0x5f}} return a, nil } @@ -153,7 +153,7 @@ func chi_mainTmpl() (*asset, error) { return a, nil } -var _chi_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\xe3\x1e\x24\x01\xc9\x62\x8f\x91\x9e\x04\xc5\x83\xb6\xd8\x07\x90\x35\x9d\x6e\x86\x26\xb3\x61\x33\x29\x48\xc9\xbb\xcb\x6e\xda\xd4\x83\x54\x73\x08\x33\x99\x2f\xff\xbf\xff\x6c\x67\xab\xbd\x75\x08\xad\x25\x56\x8a\xda\xce\x07\x81\x4c\x01\x00\xe8\xc6\x3b\xad\xa6\xd2\x91\xd4\xc3\x67\x51\xf9\xd6\xd8\x86\xda\x2f\xd3\x52\x30\x87\x85\xa9\x7c\x40\x7d\x1d\x41\x76\xc4\x78\x12\xfa\x00\x7d\x3c\x42\xb1\xde\xbb\x37\xdb\x22\x8c\x63\xa4\x2a\x13\xfc\x20\xd8\xeb\xbf\x11\x73\xb8\xff\x17\xb5\xd0\x2a\x57\xca\x18\xe7\x4b\x87\x8c\xc1\x0a\x82\xf3\x10\x06\x4e\x49\x0b\xe7\xd5\x6e\xe0\x2a\x35\x59\x0e\xc7\xa4\xd9\x78\x57\xac\x03\xb1\x34\x9c\xe9\xf9\xb7\xca\x6f\x11\x7a\xb1\x41\x74\x9e\x30\xdf\x49\x0f\xe5\x12\x6e\x63\xf8\x62\xd5\x09\x79\xee\x27\x85\xf8\xbc\x0f\xfc\xea\xb7\x58\x9e\xda\x04\xbd\xf0\x06\x03\xd9\x26\x0e\xee\x66\xf2\x79\xb2\xf0\x21\x46\x28\x27\x72\xfe\xf6\x58\xd3\x2f\xe4\xaa\x93\xbe\x3c\x6b\x92\xc4\xf6\xe2\x3c\xdb\xad\x3a\xd9\x10\xef\xd7\x56\xea\x12\x74\x61\x1c\xb2\xbe\x88\x8d\x53\x39\xa6\x37\xed\x00\x43\x88\x71\xa6\x7b\x3a\x1f\x00\xb3\x18\x33\x7f\x48\xd3\x9b\x25\x30\x35\x70\x71\x8a\x9b\x7a\xb2\x62\x9b\x0c\x43\xc8\x7f\xc8\x5d\x59\xe1\x8e\x98\xfa\x5a\xe7\x6a\x54\xdf\x01\x00\x00\xff\xff\xe5\x8f\x41\xf0\x75\x02\x00\x00" +var _chi_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcd\x4e\xeb\x30\x10\x85\xf7\x7e\x8a\xb9\x5e\x39\xd2\x55\x2c\xba\x2c\xea\x0a\x09\xc4\x02\xa8\xe8\x03\x20\x93\x4e\x9d\x51\x9d\x71\x34\x71\x2a\xa1\x2a\xef\x8e\xec\x94\x9f\xb2\x28\x64\x11\x79\x66\x3e\x1f\x9f\x33\xbd\x6b\xf6\xce\x23\x74\x8e\x58\x29\xea\xfa\x28\x09\x8c\x02\x00\xd0\x21\x7a\xad\xe6\xa3\xa7\xd4\x8e\xaf\x75\x13\x3b\xeb\x02\x75\x6f\xb6\x23\xb1\x87\x85\x6d\xa2\xa0\xbe\x8c\x20\x7b\x62\x3c\x09\xbd\x80\x3e\x1e\xa1\x5e\xef\xfd\xa3\xeb\x10\xa6\x29\x53\x8d\x95\x38\x26\x1c\xf4\xef\x88\x3d\x5c\xfd\x89\x5a\x68\x55\x29\x65\xad\x8f\x4b\x8f\x8c\xe2\x12\x82\x8f\x20\x23\x97\xa4\xb5\x8f\x6a\x37\x72\x53\x0a\x53\xc1\xb1\x68\x86\xe8\xeb\xb5\x10\xa7\xc0\x46\x7f\x5e\x6b\xe2\x16\x61\x48\x4e\x92\xae\x0a\x16\xfb\x34\xc0\x72\x05\x39\x7b\xfd\xd4\x27\x8a\x3c\xcc\x02\xf9\x2b\xdd\xe7\x91\x1f\xe2\x16\x4d\x29\xee\x79\x83\x42\x2e\xe4\x4e\xf5\xff\x1c\xbc\x9b\x5f\x89\x92\x53\x98\xf3\xd6\x4d\x4b\x3f\xf1\x0d\xf1\x7e\xed\x52\x6b\x74\x6d\x3d\xb2\x3e\xcd\xa7\xf2\xa7\x1d\xa0\x48\x76\x36\xaf\xfc\x43\x09\x4d\x76\x5c\x5d\x97\xe9\xbf\x15\x30\x05\xf8\xf2\x9b\x43\xdf\xba\xe4\x82\x41\x91\xea\x9b\xdc\x85\x6d\xec\x88\x69\x68\x75\xa5\x26\xf5\x1e\x00\x00\xff\xff\x37\xed\x09\xba\x40\x02\x00\x00" func chi_mirc_mainTmplBytes() ([]byte, error) { return bindataRead( @@ -168,8 +168,8 @@ func chi_mirc_mainTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "chi_mirc_main.tmpl", size: 629, mode: os.FileMode(0644), modTime: time.Unix(1585130365, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf6, 0x22, 0x89, 0xcb, 0xda, 0xac, 0x72, 0x44, 0x53, 0xa7, 0x9e, 0x84, 0x5c, 0xe6, 0xde, 0x6e, 0x45, 0x62, 0x7d, 0xde, 0x95, 0x92, 0x9, 0x84, 0x82, 0x65, 0x2d, 0x1f, 0xd5, 0x16, 0x16, 0xdf}} + info := bindataFileInfo{name: "chi_mirc_main.tmpl", size: 576, mode: os.FileMode(0644), modTime: time.Unix(1585297814, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0x6c, 0xeb, 0x3, 0xe6, 0xc4, 0x9c, 0x23, 0x82, 0x2, 0x42, 0x8d, 0xd, 0x89, 0x26, 0x75, 0x92, 0x94, 0x8e, 0x89, 0x55, 0x7f, 0x95, 0x72, 0x41, 0x49, 0x2, 0x85, 0x1e, 0xc0, 0xe, 0x8f}} return a, nil } @@ -188,7 +188,7 @@ func chi_mirc_routes_siteTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "chi_mirc_routes_site.tmpl", size: 328, mode: os.FileMode(0644), modTime: time.Unix(1585130093, 0)} + info := bindataFileInfo{name: "chi_mirc_routes_site.tmpl", size: 328, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x7a, 0xfa, 0x40, 0xf4, 0x9a, 0xce, 0x1d, 0x19, 0xa4, 0x35, 0xff, 0xbd, 0x80, 0x57, 0xb5, 0xa5, 0x45, 0x85, 0xf7, 0x40, 0x6f, 0xcf, 0x80, 0xdb, 0x6b, 0x57, 0x0, 0x75, 0x26, 0x7d, 0xdf}} return a, nil } @@ -208,7 +208,7 @@ func chi_mirc_routes_site_v1Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "chi_mirc_routes_site_v1.tmpl", size: 361, mode: os.FileMode(0644), modTime: time.Unix(1585130093, 0)} + info := bindataFileInfo{name: "chi_mirc_routes_site_v1.tmpl", size: 361, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xa6, 0x6b, 0xa9, 0x82, 0xcf, 0xc9, 0x5, 0x26, 0x19, 0x28, 0x7e, 0x49, 0xfd, 0x6e, 0x51, 0x91, 0x23, 0xf3, 0xe4, 0x35, 0x99, 0xbd, 0x94, 0xa6, 0x47, 0x72, 0x41, 0x28, 0x2b, 0x11, 0xaa}} return a, nil } @@ -228,12 +228,12 @@ func chi_mirc_routes_site_v2Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "chi_mirc_routes_site_v2.tmpl", size: 370, mode: os.FileMode(0644), modTime: time.Unix(1585130093, 0)} + info := bindataFileInfo{name: "chi_mirc_routes_site_v2.tmpl", size: 370, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0x23, 0x3b, 0xdb, 0x28, 0x67, 0x84, 0xff, 0x6, 0xe8, 0xa4, 0x85, 0x35, 0x2e, 0x34, 0xd7, 0x14, 0x2c, 0x7f, 0xef, 0x3e, 0x1d, 0x68, 0x86, 0x46, 0x53, 0xbc, 0xcf, 0xa4, 0x66, 0xa2, 0x57}} return a, nil } -var _echo_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x41\x0e\xc2\x20\x10\x05\xd0\xfd\x9c\xe2\x2f\x75\x33\x23\xa4\x5e\xc3\x78\x05\x8a\x13\x4a\xca\x84\x88\x85\xc4\x34\xdc\xdd\xbd\xfb\x67\xf5\xd5\x8b\xe2\x3c\xc1\xcf\x3d\x3d\x82\x29\xe6\x24\x4a\x15\x8e\x9d\x27\x6a\xfa\xee\xb9\x29\x2e\x04\x00\x29\x1f\x5b\x5f\x39\x56\x93\x50\xb2\x7d\xc5\x72\x93\xe1\x31\x3c\x7b\xbe\xfd\x93\x12\xd6\xcf\x11\xe2\x2e\x1a\xb7\x2a\x63\xc1\x58\xd8\xb1\xbb\xd3\x95\x7e\x01\x00\x00\xff\xff\x62\x04\xd1\x71\x77\x00\x00\x00" +var _echo_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x41\x0e\xc2\x20\x10\x05\xd0\xfd\x9c\xe2\x2f\x75\x33\x23\x58\xaf\x61\xbc\x02\xc5\x09\x25\x65\x42\xc4\x42\x62\x9a\xde\xdd\x7d\xf7\xcf\xea\xbb\x17\xc5\xbe\x83\x5f\x6b\x7a\x06\x53\x1c\x07\x51\xaa\x70\xec\x3c\x51\xd3\x4f\xcf\x4d\x71\x21\x00\x48\x79\x5b\xfa\xcc\xb1\x9a\x84\x92\xed\x27\x96\x9b\x0c\x8f\xe1\xf9\xce\xb7\x33\x29\x61\xfe\x6e\x21\xae\xa2\x71\xa9\x32\x26\x8c\x89\x1d\xbb\x07\x5d\xe9\x1f\x00\x00\xff\xff\xf1\x9f\x18\x0e\x77\x00\x00\x00" func echo_go_modTmplBytes() ([]byte, error) { return bindataRead( @@ -248,8 +248,8 @@ func echo_go_modTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "echo_go_mod.tmpl", size: 119, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xb6, 0x8, 0x55, 0x7d, 0xf6, 0xbc, 0x7c, 0x36, 0x93, 0x7d, 0xc7, 0xe, 0x92, 0x91, 0x10, 0xa, 0xb7, 0x6a, 0x6f, 0xdc, 0x82, 0xa2, 0x6e, 0xa4, 0x98, 0x29, 0xaa, 0x3d, 0xc7, 0x14, 0xf7}} + info := bindataFileInfo{name: "echo_go_mod.tmpl", size: 119, mode: os.FileMode(0644), modTime: time.Unix(1585297533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x39, 0x50, 0xe6, 0x6f, 0x53, 0x29, 0xab, 0xe5, 0x34, 0x8e, 0xcc, 0xf8, 0x23, 0x1e, 0xbe, 0x85, 0x21, 0x17, 0x15, 0xdf, 0x3, 0xde, 0x3e, 0x7f, 0x51, 0x77, 0x68, 0x8f, 0xe1, 0xae, 0x7f, 0x86}} return a, nil } @@ -273,7 +273,7 @@ func echo_mainTmpl() (*asset, error) { return a, nil } -var _echo_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x4e\xc3\x30\x0c\x86\xef\x79\x0a\x93\x03\x6a\x25\xd4\x88\x1d\x8b\x76\x04\xc4\x01\x36\xb1\x07\x40\xa1\xf3\x52\x6b\xad\x5d\xa5\xe9\x24\x34\xf5\xdd\x51\xd2\xad\xe3\x80\x06\x3d\x54\x76\xfd\xf5\xff\xf3\x3b\x9d\xad\xf6\xd6\x21\xb4\x96\x58\x29\x6a\x3b\xf1\x01\x32\x05\x00\xa0\x1b\x71\x5a\x4d\xa5\xa3\x50\x0f\x9f\x45\x25\xad\xb1\x0d\xb5\x5f\xa6\x25\x6f\x0e\x0b\x53\x89\x47\x7d\x1d\x41\x76\xc4\x78\x12\xfa\x00\x7d\x3c\x42\xb1\xde\xbb\x37\xdb\x22\x8c\x63\xa4\x2a\xe3\x65\x08\xd8\xeb\xbf\x11\x73\xb8\xff\x17\xb5\xd0\x2a\x57\xca\x18\x27\xa5\x43\x46\x6f\x03\x82\x13\xf0\x03\xa7\xa4\x85\x13\xb5\x1b\xb8\x4a\x4d\x96\xc3\x31\x69\x36\xe2\x8a\xb5\x27\x0e\x0d\x67\x7a\xfe\xad\x92\x2d\x42\x1f\xac\x0f\x3a\x4f\x98\x74\xa1\x87\x72\x09\xb7\x31\x7c\xb1\xea\x02\x09\xf7\x93\x42\x7c\xde\x07\x7e\x95\x2d\x96\xa7\x36\x41\x2f\xbc\x41\x4f\xb6\x89\x83\xbb\x99\x7c\x9e\x2c\xc4\xc7\x08\xe5\x44\xce\xdf\x1e\xab\x5a\x7e\x41\x57\x5d\xe8\xcb\xb3\x28\x85\xd8\x5e\xac\x67\xbf\x55\x17\x36\xc4\xfb\xb5\x0d\x75\x09\xba\x30\x0e\x59\x5f\xc4\xc6\xa9\x1c\xd3\x9b\x76\x80\xde\xc7\x3c\xd3\x45\x9d\x4f\x80\x59\xcc\x99\x3f\xa4\xe9\xcd\x12\x98\x1a\xb8\x38\xc5\x55\x3d\xd9\x60\x9b\x0c\xbd\xcf\x7f\xc8\x5d\xd9\xe1\x8e\x98\xfa\x5a\xe7\x6a\x54\xdf\x01\x00\x00\xff\xff\xa1\xc1\x28\xfb\x76\x02\x00\x00" +var _echo_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcd\x4e\xeb\x30\x10\x85\xf7\x7e\x8a\xb9\x5e\x39\xd2\x55\x2c\xba\x2c\xea\x12\x10\x0b\xa0\xa2\x0f\x80\x4c\x3a\x75\xac\x3a\x33\xd1\xc4\xa9\x84\xaa\xbc\x3b\xb2\x53\x7e\xca\xa2\x90\x45\xe4\x99\xf9\x7c\x7c\xce\xf4\xae\xd9\x3b\x8f\xd0\xb9\x40\x4a\x85\xae\x67\x49\x60\x14\x00\x80\x8e\xec\xb5\x9a\x8f\x3e\xa4\x76\x7c\xad\x1b\xee\xac\x8b\xa1\x7b\xb3\x5d\x10\x7b\x58\xd8\x86\x05\xf5\x65\x04\xc9\x07\xc2\x93\xd0\x0b\xe8\xe3\x11\xea\xf5\xde\x3f\xba\x0e\x61\x9a\x32\xd5\x58\xe1\x31\xe1\xa0\x7f\x47\xec\xe1\xea\x4f\xd4\x42\xab\x4a\x29\x6b\x3d\x2f\x3d\x12\x8a\x4b\x08\x9e\x41\x46\x2a\x49\x6b\xcf\x6a\x37\x52\x53\x0a\x53\xc1\xb1\x68\x46\xf6\xf5\x5a\x02\xa5\x48\x46\x7f\x5e\x6b\x78\x8b\x30\x24\x27\x49\x57\x05\xe3\x3e\x0d\xb0\x5c\x41\xce\x5e\x3f\xf5\x29\x30\x0d\xb3\x40\xfe\x4a\xf7\x79\xa4\x07\xde\xa2\x29\xc5\x3d\x6d\x50\x82\x8b\xb9\x53\xfd\x3f\x07\xef\xe6\x57\x58\x72\x0a\x73\xde\xba\x69\x5a\xfe\xc9\x6f\x02\xed\xd7\x2e\xb5\x46\xd7\xd6\x23\xe9\xd3\x7c\x2a\xff\xb0\x03\x14\xc9\xd6\xe6\x9d\x7f\x48\xa1\xc9\x96\xab\xeb\x32\xfd\xb7\x02\x0a\x11\xbe\x0c\xe7\xd4\xb7\x2e\xb9\x68\x50\xa4\xfa\x26\x77\x61\x1d\xbb\x40\x61\x68\x75\xa5\x26\xf5\x1e\x00\x00\xff\xff\xc4\xfd\xd4\xd3\x41\x02\x00\x00" func echo_mirc_mainTmplBytes() ([]byte, error) { return bindataRead( @@ -288,8 +288,8 @@ func echo_mirc_mainTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "echo_mirc_main.tmpl", size: 630, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x87, 0xe8, 0x2, 0xcf, 0x57, 0xe7, 0xac, 0xf1, 0xa0, 0x34, 0x81, 0xad, 0x9b, 0xfc, 0xba, 0x31, 0xd7, 0x8d, 0x96, 0x65, 0x58, 0xf0, 0x39, 0x73, 0x24, 0x38, 0x9f, 0xbe, 0xfa, 0x3f, 0xff, 0x51}} + info := bindataFileInfo{name: "echo_mirc_main.tmpl", size: 577, mode: os.FileMode(0644), modTime: time.Unix(1585297814, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe9, 0x3e, 0x36, 0xac, 0xde, 0x2a, 0x7d, 0xc1, 0x81, 0x38, 0x91, 0x61, 0x27, 0xd2, 0x87, 0xfd, 0x19, 0x6b, 0xe2, 0x46, 0x6a, 0x16, 0x19, 0x8d, 0xb7, 0xbb, 0x15, 0x12, 0xf8, 0xe9, 0xc1, 0x8e}} return a, nil } @@ -308,7 +308,7 @@ func echo_mirc_routes_siteTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "echo_mirc_routes_site.tmpl", size: 316, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "echo_mirc_routes_site.tmpl", size: 316, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x29, 0xe4, 0xfc, 0x25, 0x86, 0xb8, 0x52, 0xa3, 0x2d, 0xd1, 0x31, 0x36, 0xc1, 0x7e, 0x59, 0xdf, 0x65, 0x39, 0x63, 0x2, 0x5b, 0xf3, 0x2d, 0x15, 0x8e, 0xd2, 0x28, 0xb0, 0x97, 0x2d, 0x35}} return a, nil } @@ -328,7 +328,7 @@ func echo_mirc_routes_site_v1Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "echo_mirc_routes_site_v1.tmpl", size: 349, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "echo_mirc_routes_site_v1.tmpl", size: 349, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x8d, 0xaf, 0x66, 0x41, 0x48, 0x83, 0xfb, 0xe1, 0x89, 0x44, 0x2a, 0xd2, 0x28, 0xd, 0xc2, 0xe9, 0xa, 0x24, 0xd5, 0xa, 0xe9, 0xed, 0x86, 0xa2, 0xa4, 0xba, 0x75, 0x94, 0xb8, 0xb, 0xb}} return a, nil } @@ -348,12 +348,12 @@ func echo_mirc_routes_site_v2Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "echo_mirc_routes_site_v2.tmpl", size: 358, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "echo_mirc_routes_site_v2.tmpl", size: 358, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0x2, 0x21, 0xb6, 0xad, 0x80, 0xee, 0xad, 0x51, 0xf0, 0x30, 0xa9, 0x20, 0x4f, 0x8, 0x22, 0x74, 0x6e, 0x5c, 0x2a, 0xbb, 0x9c, 0x26, 0x4, 0x2a, 0xa4, 0xff, 0x41, 0x20, 0xd5, 0x5b, 0x90}} return a, nil } -var _gin_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x41\x0a\x02\x31\x0c\x05\xd0\x7d\x4e\xf1\x97\xba\x30\x9d\x16\xbc\x86\x78\x85\x71\x0c\x31\x38\x99\x60\xb1\x05\x19\x7a\x77\x71\xeb\xee\x2d\x9e\xc7\xbd\xad\x82\x7d\x07\x5f\x9f\x7a\x99\x5d\x30\x06\x91\x06\x32\xe7\x42\x54\xe5\xd5\xac\x0a\x0e\x04\x00\x6a\xef\x47\xbb\xf1\x12\x9e\xe6\xd5\xfc\x93\xdc\x6a\xea\x05\xbd\x70\xe1\xe9\xbf\xa8\x6d\x27\x8d\xcd\x96\x9f\xd0\x33\x9f\x79\xa2\x23\x7d\x03\x00\x00\xff\xff\x1f\x3d\x42\x01\x73\x00\x00\x00" +var _gin_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x31\x0e\xc2\x30\x0c\x05\xd0\xdd\xa7\xf8\x23\x0c\x38\x4d\x10\xd7\x40\x5c\xa1\x14\xcb\x58\xd4\xb5\x88\x48\x24\x54\xf5\xee\x88\xb5\xdb\x1b\x9e\xc7\xa3\xcd\x82\x75\x05\xdf\x5e\x7a\x1d\x5d\xb0\x6d\x44\x1a\xc8\x9c\x0b\x51\x95\x77\xb3\x2a\x38\x10\x00\xa8\x7d\x9e\xed\xce\x53\x78\x1a\x67\xf3\x6f\x72\xab\xa9\x17\xf4\xc2\x67\x1e\xf6\x45\x6d\x39\x69\x2c\x36\xfd\x85\x9e\xf9\xc2\x03\x1d\xe9\x17\x00\x00\xff\xff\xf1\xb9\x7b\xa0\x73\x00\x00\x00" func gin_go_modTmplBytes() ([]byte, error) { return bindataRead( @@ -368,8 +368,8 @@ func gin_go_modTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "gin_go_mod.tmpl", size: 115, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0x45, 0x76, 0xcd, 0x76, 0xb, 0x75, 0x58, 0xc6, 0xdf, 0xd, 0x55, 0x3b, 0xff, 0xc8, 0x31, 0x7e, 0x45, 0xac, 0xed, 0xdb, 0xd4, 0x1b, 0x1a, 0x9, 0x64, 0x1e, 0xa3, 0x7e, 0x9d, 0x6f, 0x82}} + info := bindataFileInfo{name: "gin_go_mod.tmpl", size: 115, mode: os.FileMode(0644), modTime: time.Unix(1585297533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x35, 0x67, 0x56, 0x56, 0x85, 0x29, 0xad, 0x4c, 0xa1, 0xe2, 0x58, 0x3f, 0x1d, 0x7c, 0xf0, 0x23, 0x9a, 0xc0, 0xda, 0x1f, 0x60, 0x99, 0xef, 0x4, 0x1e, 0xe1, 0x33, 0xac, 0xd3, 0x7f, 0xbb, 0xd5}} return a, nil } @@ -393,7 +393,7 @@ func gin_mainTmpl() (*asset, error) { return a, nil } -var _gin_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xa3\x40\x0c\x86\xef\xf3\x14\xde\x39\xac\x40\x5a\x31\xda\x1c\xa9\x72\x6d\xd4\x43\x9b\xa8\x79\x80\x6a\x4a\x9c\x89\x15\xf0\x20\x63\x22\x55\x11\xef\x5e\x0d\x24\xa4\x87\x2a\x2d\x07\x64\xe3\x8f\xff\x9f\xdf\xd3\xfa\xea\xe8\x03\x42\xe3\x89\x8d\xa1\xa6\x8d\xa2\x90\x19\x00\x00\x5b\xc7\x60\xcd\x54\x06\xd2\x43\xff\x5e\x54\xb1\x71\xbe\xa6\xe6\xc3\x35\x24\xee\xb4\x70\x55\x14\xb4\xf7\x11\xe4\x40\x8c\x17\xa1\x37\xb0\xe7\x33\x14\x9b\x63\x78\xf1\x0d\xc2\x30\x24\xaa\x72\x12\x7b\xc5\xce\xfe\x8c\xb8\xd3\xff\x5f\x51\x0b\x6b\x72\x63\x9c\x0b\xb1\x0c\xc8\x28\x5e\x11\x42\x04\xe9\x79\x4c\x5a\x84\x68\xf6\x3d\x57\x63\x93\xe5\x70\x1e\x35\xeb\x18\x8a\x8d\x10\x6b\xcd\x99\x9d\x7f\xab\xe2\x0e\xa1\x53\x2f\x6a\xf3\x11\x8b\xad\x76\x50\x2e\xe1\x6f\x0a\x5f\xac\x5b\xa5\xc8\xdd\xa4\x90\x9e\xd7\x9e\x9f\xe3\x0e\xcb\x4b\x3b\x42\x4f\xbc\x45\x21\x5f\xa7\xc1\xbf\x99\x5c\x4d\x16\x51\x52\x84\x72\x22\xe7\x6f\x2b\xe2\x6f\xc8\x75\xab\x5d\x79\xd5\x24\x4d\xed\xcd\x79\xb6\x5b\xb7\xba\x25\x3e\x6e\xbc\x1e\x4a\xb0\x85\x0b\xc8\xf6\x26\x36\x4c\xe5\x30\xbe\x69\x0f\x28\x92\xe2\x4c\xf7\x74\x3d\x00\x66\x29\x66\xfe\x30\x4e\xff\x2c\x81\xa9\x86\x9b\x53\xda\xd4\xa3\x57\x5f\x67\x28\x92\x7f\x91\xbb\xb3\xc2\x3d\x31\x75\x07\x9b\x9b\xc1\x7c\x06\x00\x00\xff\xff\x9a\x0b\x6a\xa5\x75\x02\x00\x00" +var _gin_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x4d\x6e\xe3\x30\x0c\x85\xf7\x3a\x05\x47\x2b\x19\x18\x58\x98\x2c\x33\xc8\x76\x82\x59\xb4\x0d\x9a\x03\x14\xaa\xc3\x28\x44\x6c\xd2\xa0\xe5\x00\x45\xe0\xbb\x17\x92\xd3\x9f\x74\x91\xd6\x0b\x43\x24\x3f\x3d\xbd\xc7\x3e\x34\xc7\x10\x11\xba\x40\x6c\x0c\x75\xbd\x68\x02\x67\x00\x00\x6c\x2b\xd1\x9a\xf9\x18\x29\x1d\xc6\xe7\xba\x91\xce\x87\x96\xba\x17\xdf\x91\xfa\xd3\xc2\x37\xa2\x68\x6f\x23\xc8\x91\x18\x2f\x42\x4f\x60\xcf\x67\xa8\x37\xc7\x78\x1f\x3a\x84\x69\xca\x54\xe3\x55\xc6\x84\x83\xfd\x1e\xf1\xa7\x3f\x3f\xa2\x16\xd6\x54\xc6\x78\x1f\x65\x19\x91\x51\x43\x42\x88\x02\x3a\x72\x49\x5a\x47\x31\xfb\x91\x9b\x52\xb8\x0a\xce\x45\xb3\x95\x58\x6f\x94\x38\xb5\xec\xec\xfb\xb5\x46\x76\x08\x43\x0a\x9a\x6c\x55\x30\xe9\xd3\x00\xcb\x15\xe4\xec\xf5\x43\x9f\x48\x78\x98\x05\xf2\x57\xba\x8f\x23\xdf\xc9\x0e\x5d\x29\xfe\xf3\x16\x95\x42\x9b\x3b\xd5\xef\x6b\x70\x3d\xbf\x22\x9a\x53\xb8\xeb\xd6\x9a\xf8\x2b\xbe\x25\x3e\x6e\x42\x3a\x38\x5b\xfb\x88\x6c\x2f\xf3\xa9\xfc\x69\x0f\xa8\x9a\x9d\xcd\x2b\x7f\x53\x42\x97\x1d\x57\x7f\xcb\xf4\xd7\x0a\x98\x5a\xf8\xf0\x9b\x43\xff\x0b\x29\xb4\x0e\x55\xab\x4f\x72\x37\xb6\xb1\x27\xa6\xe1\x60\x2b\x33\x99\xd7\x00\x00\x00\xff\xff\x3d\xaa\xcc\x64\x40\x02\x00\x00" func gin_mirc_mainTmplBytes() ([]byte, error) { return bindataRead( @@ -408,8 +408,8 @@ func gin_mirc_mainTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "gin_mirc_main.tmpl", size: 629, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x29, 0xa9, 0xff, 0x8d, 0x2b, 0x40, 0xbf, 0x57, 0x19, 0x50, 0x4e, 0xe2, 0x71, 0xb5, 0xe6, 0xa2, 0x95, 0xb, 0xe5, 0xa2, 0x73, 0x4c, 0x3d, 0x1c, 0x22, 0x4d, 0xc0, 0x98, 0x89, 0xda, 0xf4}} + info := bindataFileInfo{name: "gin_mirc_main.tmpl", size: 576, mode: os.FileMode(0644), modTime: time.Unix(1585297814, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x4c, 0x92, 0x78, 0xc, 0xbe, 0x3c, 0x31, 0xcd, 0x9c, 0xfb, 0x40, 0x58, 0xb6, 0x4, 0x2b, 0x36, 0x37, 0x7, 0x89, 0xb5, 0xef, 0xc8, 0xc8, 0xd5, 0x5f, 0x1c, 0x8b, 0x33, 0xbc, 0xe7, 0x62}} return a, nil } @@ -428,7 +428,7 @@ func gin_mirc_routes_siteTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "gin_mirc_routes_site.tmpl", size: 316, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "gin_mirc_routes_site.tmpl", size: 316, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x29, 0xe4, 0xfc, 0x25, 0x86, 0xb8, 0x52, 0xa3, 0x2d, 0xd1, 0x31, 0x36, 0xc1, 0x7e, 0x59, 0xdf, 0x65, 0x39, 0x63, 0x2, 0x5b, 0xf3, 0x2d, 0x15, 0x8e, 0xd2, 0x28, 0xb0, 0x97, 0x2d, 0x35}} return a, nil } @@ -448,7 +448,7 @@ func gin_mirc_routes_site_v1Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "gin_mirc_routes_site_v1.tmpl", size: 349, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "gin_mirc_routes_site_v1.tmpl", size: 349, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x8d, 0xaf, 0x66, 0x41, 0x48, 0x83, 0xfb, 0xe1, 0x89, 0x44, 0x2a, 0xd2, 0x28, 0xd, 0xc2, 0xe9, 0xa, 0x24, 0xd5, 0xa, 0xe9, 0xed, 0x86, 0xa2, 0xa4, 0xba, 0x75, 0x94, 0xb8, 0xb, 0xb}} return a, nil } @@ -468,12 +468,12 @@ func gin_mirc_routes_site_v2Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "gin_mirc_routes_site_v2.tmpl", size: 359, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "gin_mirc_routes_site_v2.tmpl", size: 359, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0xdc, 0x9e, 0xca, 0xb4, 0xbc, 0x8b, 0x68, 0xe8, 0xb9, 0xd4, 0xb6, 0x3d, 0x61, 0x53, 0xec, 0x86, 0x66, 0xb7, 0xc4, 0xb4, 0x41, 0xb5, 0x92, 0x87, 0xce, 0x6b, 0x2e, 0x19, 0x97, 0xc8, 0x23}} return a, nil } -var _httprouter_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x41\x0e\xc2\x20\x10\x05\xd0\xfd\x9c\xe2\x2f\x75\x33\x14\xbc\x87\xf1\x0a\xb5\x9d\xc0\x28\x23\x8a\x40\x62\x9a\xde\xdd\x7d\xf7\xcf\xca\xda\xb3\x60\xdb\xc0\xb7\x67\xbc\xce\x26\xd8\x77\xa2\x58\xe0\xd9\x07\xa2\x2a\x9f\xae\x55\x70\x22\x00\x88\xda\x52\xbf\xf3\x52\xcc\xcd\x59\xed\xe7\x4c\xab\x1b\x01\x23\x70\xe0\xe9\x48\x1e\x3d\xab\xbc\xbe\x4b\x32\x5d\x9b\x4b\xad\xbd\x6b\xe9\x4d\x2a\x86\xe7\x0b\x4f\x74\xa6\x7f\x00\x00\x00\xff\xff\x52\x42\xd9\x6f\x7e\x00\x00\x00" +var _httprouter_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x41\x0e\xc2\x20\x10\x05\xd0\xfd\x9c\xe2\x2f\x75\x03\x82\xf7\x30\x5e\xa1\xb6\x13\x18\x65\x44\x91\x21\x31\x4d\xef\x6e\xe2\xb2\xfb\xa7\x75\xb1\xc2\x58\x57\xb8\xeb\x23\x5d\x26\x65\x6c\x1b\x51\xaa\x08\x2e\x44\xa2\xc6\x6f\x93\xc6\x38\x10\x00\x24\xe9\xd9\x6e\x6e\xae\xea\xa7\x22\xfa\xf5\x2a\xcd\x8f\x88\x11\xdd\xd9\x9d\xf6\xe4\x6e\x45\xf8\xf9\x99\xb3\xca\xd2\x7d\xee\xfd\xd5\xaa\x75\x6e\x18\xe1\xcf\x8f\xf4\x0b\x00\x00\xff\xff\x13\xf2\x01\x11\x7e\x00\x00\x00" func httprouter_go_modTmplBytes() ([]byte, error) { return bindataRead( @@ -488,8 +488,8 @@ func httprouter_go_modTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "httprouter_go_mod.tmpl", size: 126, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0xdd, 0x7f, 0x8e, 0x83, 0xb7, 0xa2, 0x87, 0x73, 0xb1, 0x99, 0xfe, 0x25, 0xd6, 0xdf, 0xcb, 0x29, 0x53, 0xc9, 0x9, 0x8d, 0x81, 0x85, 0x18, 0xf8, 0x5f, 0x86, 0x2d, 0xf5, 0x6, 0xd8, 0x14}} + info := bindataFileInfo{name: "httprouter_go_mod.tmpl", size: 126, mode: os.FileMode(0644), modTime: time.Unix(1585297533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0x9c, 0xba, 0x1e, 0xe4, 0x48, 0xf9, 0xcc, 0x91, 0xc2, 0x4f, 0xdb, 0x32, 0xe6, 0x25, 0x54, 0xb9, 0x3, 0xfe, 0x77, 0x92, 0x1c, 0x59, 0x74, 0x22, 0xad, 0xf5, 0x43, 0xf, 0x5c, 0x8f, 0xf7}} return a, nil } @@ -513,7 +513,7 @@ func httprouter_mainTmpl() (*asset, error) { return a, nil } -var _httprouter_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xa3\x40\x0c\x86\xef\xf3\x14\xde\x39\xac\x40\x5a\x31\xda\x1c\x59\xe5\xba\x6d\x0f\x6d\xa2\xe4\x01\xaa\x29\x71\x26\x56\xc0\x83\x8c\x89\x54\x45\xbc\x7b\x35\x90\x90\x1e\xaa\xb4\x1c\x90\x8d\x3f\xff\xf6\x6f\x5a\x5f\x1d\x7d\x40\x68\x3c\xb1\x31\xd4\xb4\x51\x14\x32\x03\x00\x60\xeb\x18\xac\x99\xc2\x40\x7a\xe8\xdf\x8a\x2a\x36\xce\xd7\xd4\xbc\xbb\x86\xc4\x9d\x16\xae\x8a\x82\xf6\x3e\x82\x1c\x88\xf1\x22\xf4\x0a\xf6\x7c\x86\x62\x7d\x0c\x2f\xbe\x41\x18\x86\x44\x55\x4e\x62\xaf\xd8\xd9\xef\x11\x77\xfa\xfb\x23\x6a\x61\x4d\x6e\x8c\x73\x21\x96\x01\x19\xc5\x2b\x42\x88\x20\x3d\x8f\x4e\x8b\x10\xcd\xbe\xe7\x6a\x4c\xb2\x1c\xce\xa3\x66\x1d\x43\xb1\x16\x62\xad\x39\xb3\x73\x5b\x15\x77\x08\x9d\x7a\x51\x9b\x8f\x58\x6c\xb5\x83\x72\x09\xbf\x93\xf9\x62\xd5\x2a\x45\xee\x26\x85\xf4\x6c\x7a\x7e\x8e\x3b\x2c\x2f\xe9\x08\x3d\xf1\x16\x85\x7c\x9d\x0a\x7f\x66\xf2\x61\x1a\x11\x25\x59\x28\x27\x72\xfe\xf6\xa8\xda\x6e\x92\x1b\xf9\xa2\x61\xd5\x6a\x57\x5e\xa5\x49\x53\x7a\x5b\x60\x9e\xba\x6a\x75\x4b\x7c\x5c\x7b\x3d\x94\x60\x0b\x17\x90\xed\x4d\x6c\x98\xc2\x61\x7c\xd3\x1e\x50\x24\xb9\x9a\x7e\xd7\x75\x0f\xcc\x92\xdb\xfc\xdf\x58\xfd\xb5\x04\xa6\x1a\x6e\x93\xd2\xc1\xfe\x7b\xf5\x75\x86\x22\xf9\x27\xb9\x3b\x97\xdc\x13\x53\x77\xb0\xb9\x19\xcc\x47\x00\x00\x00\xff\xff\x65\x8e\x19\xdf\x7c\x02\x00\x00" +var _httprouter_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcd\x4e\xc3\x30\x0c\xc7\xef\x79\x0a\x93\x53\x2a\xa1\x46\xec\x38\xb4\x2b\x1f\x07\x60\xda\x1e\x00\x85\xce\xcb\xa2\xa5\x76\xe5\xa6\x93\xd0\xd4\x77\x47\x49\xc7\xc7\x38\x0c\x72\x88\x62\xfb\xe7\x7f\xfc\x77\xe7\x9a\xbd\xf3\x08\xad\x0b\xa4\x54\x68\x3b\x96\x04\x46\x01\x00\xe8\xc8\x5e\xab\xe9\xe9\x43\xda\x0d\x6f\x75\xc3\xad\x75\x31\xb4\xef\xb6\x0d\x62\x0f\x33\xdb\xb0\xa0\xbe\x8c\x20\xf9\x40\x78\x12\x7a\x05\x7d\x3c\x42\xbd\xdc\xfb\x67\xd7\x22\x8c\x63\xa6\x1a\x2b\x3c\x24\xec\xf5\xdf\x88\x3d\xdc\xfc\x8b\x9a\x69\x55\x29\x65\xad\xe7\xb9\x47\x42\x71\x09\xc1\x33\xc8\x40\xc5\x69\xed\x59\x6d\x07\x6a\x4a\x60\x2a\x38\x16\xcd\xc8\xbe\x5e\x4a\xa0\x14\xc9\xe8\xaf\xb6\x86\x37\x08\x7d\x72\x92\x74\x55\x30\xee\x52\x0f\xf3\x05\x64\xef\xf5\x4b\x97\x02\x53\x3f\x09\xe4\x53\xb2\xab\x81\x9e\x78\x83\xa6\x04\x8f\xb4\x46\x09\x2e\xe6\x4c\x75\x7d\x0e\xde\x4f\xbf\xb0\x64\x17\xe6\x3c\xf5\x90\x52\xb7\xca\x7e\xe4\x77\xd7\x3a\xd0\x7e\xe9\xd2\xce\xe8\xda\x7a\x24\x7d\xaa\x8f\xe5\x0e\x5b\x40\x91\x3c\xe0\xb4\xf9\x4f\x41\x34\x79\xf0\xea\xb6\x54\xaf\x16\x40\x21\xc2\xf7\xd8\xd9\xfb\x9d\x4b\x2e\x1a\x14\xa9\x7e\xc8\x5d\x58\xca\x36\x50\xe8\x77\xba\x52\xa3\xfa\x08\x00\x00\xff\xff\x80\x07\xd5\xf1\x47\x02\x00\x00" func httprouter_mirc_mainTmplBytes() ([]byte, error) { return bindataRead( @@ -528,8 +528,8 @@ func httprouter_mirc_mainTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "httprouter_mirc_main.tmpl", size: 636, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0x53, 0xdf, 0xb3, 0x4a, 0x61, 0xb, 0xea, 0x57, 0x49, 0x3e, 0x41, 0x59, 0xab, 0x39, 0x2f, 0x8e, 0x6b, 0x52, 0xa6, 0xd4, 0xbc, 0xc6, 0x5e, 0xed, 0xbd, 0xf6, 0x6d, 0x97, 0x71, 0xc4, 0x3d}} + info := bindataFileInfo{name: "httprouter_mirc_main.tmpl", size: 583, mode: os.FileMode(0644), modTime: time.Unix(1585297814, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0x5b, 0xda, 0xdc, 0x56, 0xcc, 0x54, 0xa2, 0xbe, 0xbc, 0x36, 0xd5, 0x6, 0x6e, 0xc1, 0x20, 0xbc, 0x94, 0xb3, 0x55, 0x9c, 0xe3, 0x63, 0x5, 0xd7, 0xe6, 0x6a, 0x88, 0xf4, 0x66, 0x4e, 0x29}} return a, nil } @@ -548,7 +548,7 @@ func httprouter_mirc_routes_siteTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "httprouter_mirc_routes_site.tmpl", size: 316, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "httprouter_mirc_routes_site.tmpl", size: 316, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x29, 0xe4, 0xfc, 0x25, 0x86, 0xb8, 0x52, 0xa3, 0x2d, 0xd1, 0x31, 0x36, 0xc1, 0x7e, 0x59, 0xdf, 0x65, 0x39, 0x63, 0x2, 0x5b, 0xf3, 0x2d, 0x15, 0x8e, 0xd2, 0x28, 0xb0, 0x97, 0x2d, 0x35}} return a, nil } @@ -568,7 +568,7 @@ func httprouter_mirc_routes_site_v1Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "httprouter_mirc_routes_site_v1.tmpl", size: 349, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "httprouter_mirc_routes_site_v1.tmpl", size: 349, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x8d, 0xaf, 0x66, 0x41, 0x48, 0x83, 0xfb, 0xe1, 0x89, 0x44, 0x2a, 0xd2, 0x28, 0xd, 0xc2, 0xe9, 0xa, 0x24, 0xd5, 0xa, 0xe9, 0xed, 0x86, 0xa2, 0xa4, 0xba, 0x75, 0x94, 0xb8, 0xb, 0xb}} return a, nil } @@ -588,12 +588,12 @@ func httprouter_mirc_routes_site_v2Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "httprouter_mirc_routes_site_v2.tmpl", size: 358, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "httprouter_mirc_routes_site_v2.tmpl", size: 358, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0x2, 0x21, 0xb6, 0xad, 0x80, 0xee, 0xad, 0x51, 0xf0, 0x30, 0xa9, 0x20, 0x4f, 0x8, 0x22, 0x74, 0x6e, 0x5c, 0x2a, 0xbb, 0x9c, 0x26, 0x4, 0x2a, 0xa4, 0xff, 0x41, 0x20, 0xd5, 0x5b, 0x90}} return a, nil } -var _iris_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x31\x0e\xc2\x30\x0c\x05\xd0\xdd\xa7\xf8\x23\x2c\x0e\xf6\xc4\x29\x10\x57\x30\x10\x15\xab\xb5\x22\xdc\x26\x12\xaa\x7a\x77\x76\xf6\x17\xed\xd5\x97\x8a\x7d\x07\xdf\xe7\xe9\x66\x51\x71\x1c\x44\x53\x83\xb0\x28\x51\xd6\x4f\xf7\xac\x38\x11\x00\x4c\xbe\xbd\xfb\x83\x9f\x2d\x8a\x2d\x1e\xdf\x12\x9e\x65\x28\x86\xb2\xf2\xe5\x9f\xcc\xb6\x59\xda\x5a\x3c\x7d\x2d\x43\x14\x43\x94\x85\xaf\x74\xa6\x5f\x00\x00\x00\xff\xff\x85\x72\x00\x04\x77\x00\x00\x00" +var _iris_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x31\x0e\xc2\x30\x0c\x05\xd0\xdd\xa7\xf8\x23\x2c\x0e\x31\x0b\xa7\x40\x5c\xc1\x40\x14\xac\xd6\x8a\x70\x9b\x48\xa8\xea\xdd\xd9\xbb\x3f\x6f\xef\x3e\x17\x6c\x1b\xf8\x31\xd5\xbb\x7a\xc1\xbe\x13\xd5\x86\xcc\x59\x88\xa2\x7c\xbb\x45\xc1\x89\x00\xa0\xda\xfa\xe9\x4f\x7e\x35\x4f\x3a\x9b\xff\x92\x5b\xa4\x21\x18\xc2\x57\xbe\x1c\xc9\xa4\xab\x86\x2e\xc9\xc2\x96\x34\xb2\x60\x64\xe1\xcc\x37\x3a\xd3\x3f\x00\x00\xff\xff\x16\xe9\xc9\x7b\x77\x00\x00\x00" func iris_go_modTmplBytes() ([]byte, error) { return bindataRead( @@ -608,8 +608,8 @@ func iris_go_modTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "iris_go_mod.tmpl", size: 119, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x13, 0xd2, 0x22, 0xd7, 0xa2, 0xb3, 0x40, 0x58, 0xf9, 0x23, 0x49, 0x37, 0x26, 0x16, 0xb9, 0xb1, 0xce, 0xba, 0x94, 0xca, 0xc3, 0xeb, 0x2f, 0x63, 0xeb, 0x9, 0x3, 0x3e, 0x41, 0x16, 0x49, 0x9e}} + info := bindataFileInfo{name: "iris_go_mod.tmpl", size: 119, mode: os.FileMode(0644), modTime: time.Unix(1585297533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x3, 0xa1, 0x83, 0x97, 0x5, 0xb7, 0x1a, 0xe6, 0x4d, 0xb, 0x44, 0x1d, 0xf0, 0x4e, 0x74, 0xc8, 0xd9, 0x36, 0x82, 0xc8, 0x6b, 0xbf, 0xf5, 0x2e, 0xe9, 0xa9, 0x10, 0x27, 0x1f, 0xef, 0x43}} return a, nil } @@ -633,7 +633,7 @@ func iris_mainTmpl() (*asset, error) { return a, nil } -var _iris_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xa3\x40\x0c\x86\xef\xf3\x14\xde\x39\xac\x40\x5a\x31\xda\x1c\xa9\x72\x6d\x95\x43\x9b\xa8\x79\x80\x6a\x4a\x9c\x89\x15\xf0\x20\x63\x22\x55\x11\xef\x5e\x0d\x24\xa4\x87\x2a\x2d\x07\x64\xe3\x8f\xff\x9f\xdf\xd3\xfa\xea\xe8\x03\x42\xe3\x89\x8d\xa1\xa6\x8d\xa2\x90\x19\x00\x00\x5b\xc7\x60\xcd\x54\x06\xd2\x43\xff\x5e\x54\xb1\x71\xbe\xa6\xe6\xc3\x35\x24\xee\xb4\x70\x55\x14\xb4\xf7\x11\xe4\x40\x8c\x17\xa1\x37\xb0\xe7\x33\x14\x9b\x63\x78\xf1\x0d\xc2\x30\x24\xaa\x72\x12\x7b\xc5\xce\xfe\x8c\xb8\xd3\xff\x5f\x51\x0b\x6b\x72\x63\x9c\x0b\xb1\x0c\xc8\x28\x5e\x11\x42\x04\xe9\x79\x4c\x5a\x84\x68\xf6\x3d\x57\x63\x93\xe5\x70\x1e\x35\xeb\x18\x8a\x8d\x10\x6b\xcd\x99\x9d\x7f\xab\xe2\x0e\xa1\x53\x2f\x6a\xf3\x11\x8b\xad\x76\x50\x2e\xe1\x6f\x0a\x5f\xac\x5b\xa5\xc8\xdd\xa4\x90\x9e\xd7\x9e\x9f\xe3\x0e\xcb\x4b\x3b\x42\x2b\xde\xa2\x90\xaf\xd3\xe0\xdf\x4c\x3e\x4d\x16\x51\x52\x84\x72\x22\xe7\x6f\x2b\xa1\xee\x1b\x74\xdd\x6a\x57\x5e\x45\x49\x53\x7b\xb3\x9e\xfd\xd6\xad\x6e\x89\x8f\x1b\xaf\x87\x12\x6c\xe1\x02\xb2\xbd\x89\x0d\x53\x39\x8c\x6f\xda\x03\x8a\xa4\x3c\xd3\x45\x5d\x4f\x80\x59\xca\x99\x3f\x8c\xd3\x3f\x4b\x60\xaa\xe1\xe6\x94\x56\xf5\xe8\xd5\xd7\x19\x8a\xe4\x5f\xe4\xee\xec\x70\x4f\x4c\xdd\xc1\xe6\x66\x30\x9f\x01\x00\x00\xff\xff\x2d\xe8\xeb\x96\x76\x02\x00\x00" +var _iris_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x4d\x6e\xe3\x30\x0c\x85\xf7\x3a\x05\x47\x2b\x19\x18\x58\x98\x2c\x33\xc8\x76\x06\x59\xb4\x0d\x9a\x03\x14\xaa\xc3\x28\x44\x6c\xd2\xa0\xe5\x00\x45\xe0\xbb\x17\x92\xd3\x9f\x74\x91\xd6\x0b\x43\x24\x3f\x3d\xbd\xc7\x3e\x34\xc7\x10\x11\xba\x40\x6c\x0c\x75\xbd\x68\x02\x67\x00\x00\x6c\x2b\xd1\x9a\xf9\x18\x29\x1d\xc6\xe7\xba\x91\xce\x87\x96\xba\x17\xdf\x91\xfa\xd3\xc2\x37\xa2\x68\x6f\x23\xc8\x91\x18\x2f\x42\x4f\x60\xcf\x67\xa8\x37\xc7\x78\x1f\x3a\x84\x69\xca\x54\xe3\x55\xc6\x84\x83\xfd\x1e\xf1\xa7\x3f\x3f\xa2\x16\xd6\x54\xc6\x78\x1f\x65\x19\x91\x51\x43\x42\x88\x02\x3a\x72\x49\x5a\x47\x31\xfb\x91\x9b\x52\xb8\x0a\xce\x45\xb3\x95\x58\x6f\x94\x38\xb5\xec\xec\xfb\xb5\x46\x76\x08\x43\x0a\x9a\x6c\x55\x30\xe9\xd3\x00\xcb\x15\xe4\xec\xf5\x43\x9f\x48\x78\x98\x05\xf2\x57\xba\x8f\x23\xdf\xc9\x0e\x5d\x29\xd6\xbc\x45\xa5\xd0\xe6\x4e\xf5\xfb\x1a\xfc\x3f\xbf\x22\x9a\x53\xb8\xeb\xd6\x5a\x69\xf8\xca\x6f\x89\x8f\x9b\x90\x0e\xce\xd6\x3e\x22\xdb\xcb\x7c\x2a\x7f\xda\x03\xaa\x66\x6b\xf3\xce\xdf\xa4\xd0\x65\xcb\xd5\xdf\x32\xfd\xb5\x02\xa6\x16\x3e\x0c\xe7\xd4\xff\x42\x0a\xad\x43\xd5\xea\x93\xdc\x8d\x75\xec\x89\x69\x38\xd8\xca\x4c\xe6\x35\x00\x00\xff\xff\x08\x26\x80\x6d\x41\x02\x00\x00" func iris_mirc_mainTmplBytes() ([]byte, error) { return bindataRead( @@ -648,8 +648,8 @@ func iris_mirc_mainTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "iris_mirc_main.tmpl", size: 630, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0x45, 0x7b, 0x7b, 0x13, 0x55, 0x82, 0x1d, 0x4d, 0x99, 0x25, 0x7e, 0x1d, 0x8b, 0xaa, 0x89, 0xc4, 0xe6, 0xbc, 0xa7, 0xea, 0x45, 0x84, 0x96, 0x38, 0xe5, 0xd4, 0x51, 0xd0, 0xea, 0x5a, 0x2c}} + info := bindataFileInfo{name: "iris_mirc_main.tmpl", size: 577, mode: os.FileMode(0644), modTime: time.Unix(1585297814, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0xd5, 0xc, 0xe7, 0x24, 0xe3, 0x6e, 0x60, 0x1d, 0x58, 0xb9, 0x65, 0xd, 0xe7, 0x33, 0x1f, 0x1f, 0x9c, 0x67, 0xfb, 0x35, 0x22, 0x69, 0x98, 0xb, 0xdd, 0x12, 0x2f, 0x54, 0x9, 0x9d, 0x2e}} return a, nil } @@ -668,7 +668,7 @@ func iris_mirc_routes_siteTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "iris_mirc_routes_site.tmpl", size: 323, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "iris_mirc_routes_site.tmpl", size: 323, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xba, 0x90, 0x24, 0x1c, 0xcb, 0xeb, 0xf8, 0x88, 0x88, 0xbd, 0xa0, 0x2a, 0x5b, 0x98, 0x1d, 0x9b, 0x15, 0x40, 0x5, 0xa4, 0xa0, 0xd0, 0x16, 0x7d, 0xae, 0x23, 0xd0, 0xe1, 0x48, 0x92, 0xde}} return a, nil } @@ -688,7 +688,7 @@ func iris_mirc_routes_site_v1Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "iris_mirc_routes_site_v1.tmpl", size: 356, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "iris_mirc_routes_site_v1.tmpl", size: 356, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x3f, 0x3c, 0x46, 0x6, 0xae, 0x80, 0xe2, 0xf0, 0x4a, 0x96, 0x75, 0x34, 0x2e, 0x9, 0x63, 0x15, 0xc7, 0x37, 0x81, 0x76, 0x70, 0x34, 0x63, 0x80, 0x3f, 0x9e, 0x2b, 0xf, 0xa4, 0x59, 0x9b}} return a, nil } @@ -708,12 +708,12 @@ func iris_mirc_routes_site_v2Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "iris_mirc_routes_site_v2.tmpl", size: 365, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "iris_mirc_routes_site_v2.tmpl", size: 365, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0x71, 0xb3, 0xe5, 0x55, 0xcd, 0x22, 0xc3, 0xc3, 0x8, 0x9a, 0x79, 0x2b, 0xea, 0x2, 0xc2, 0x35, 0x7f, 0xbd, 0x8e, 0x58, 0xc1, 0xe4, 0x19, 0x86, 0x8f, 0xd0, 0x9c, 0x76, 0x33, 0x41, 0xbd}} return a, nil } -var _macaron_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\xca\x41\x0e\xc2\x20\x10\x05\xd0\xfd\x9c\xe2\x2f\x75\xf3\x11\x8c\xd7\x30\x5e\x01\x2b\xc1\x49\x3b\x1d\x25\x42\x62\x9a\xde\xdd\x85\xfb\x67\xfe\xe8\x4b\xc1\xb6\x81\xb7\xb9\x5e\xb3\x15\xec\xbb\x48\x75\x44\xc6\x24\xd2\xca\xbb\x6b\x2b\x38\x08\x00\x54\xfd\x3c\xfb\x9d\x93\x5b\xc8\x8b\xda\x37\x98\xb6\x30\x12\x46\x62\xe2\xe9\x4f\xfc\x35\x57\xea\x1a\x2c\x4f\xb9\xf9\xca\x11\x31\x22\xcf\xbc\xc8\x51\x7e\x01\x00\x00\xff\xff\xd3\x06\xe2\xae\x6e\x00\x00\x00" +var _macaron_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\xca\x31\x8e\xc2\x30\x10\x05\xd0\x7e\x4e\xf1\xcb\xdd\xe6\x1b\x3b\xe2\x1a\x88\x2b\x98\x60\x99\x51\x32\x19\xb0\xb0\x25\x14\xe5\xee\x14\xf4\xcf\xfc\xde\xd7\x82\x7d\x07\xaf\x4b\xbd\x64\x2b\x38\x0e\x91\xea\x88\x8c\x49\xa4\x95\x57\xd7\x56\xf0\x27\x00\x50\xf5\xfd\xe8\x37\xce\x6e\x21\xaf\x6a\x9f\x60\xda\xc2\x48\x18\x89\x13\x4f\x3f\xe2\xcf\xa5\x52\xb7\x60\x79\xce\xcd\x37\x8e\x88\x11\x39\xf1\x2c\xff\xf2\x0d\x00\x00\xff\xff\xcc\x11\x12\x2e\x6e\x00\x00\x00" func macaron_go_modTmplBytes() ([]byte, error) { return bindataRead( @@ -728,8 +728,8 @@ func macaron_go_modTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "macaron_go_mod.tmpl", size: 110, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x28, 0x9f, 0xca, 0x84, 0x4d, 0x89, 0x12, 0xcd, 0x3d, 0x3f, 0x5f, 0x64, 0xea, 0xb, 0xcc, 0xa3, 0x51, 0x10, 0x13, 0x26, 0x3e, 0x14, 0xd3, 0xe8, 0x67, 0xb, 0xaf, 0xf9, 0xea, 0x8c, 0x86}} + info := bindataFileInfo{name: "macaron_go_mod.tmpl", size: 110, mode: os.FileMode(0644), modTime: time.Unix(1585297533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4, 0x11, 0xf4, 0xcc, 0x20, 0xca, 0x41, 0xa2, 0x14, 0x70, 0x97, 0xfa, 0x59, 0x4b, 0xa6, 0x10, 0x62, 0x23, 0x0, 0xe4, 0xd1, 0x81, 0xf, 0xd2, 0x56, 0x72, 0x48, 0x4b, 0xe9, 0xe8, 0x1c, 0x3f}} return a, nil } @@ -753,7 +753,7 @@ func macaron_mainTmpl() (*asset, error) { return a, nil } -var _macaron_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xa3\x40\x0c\x86\xef\xf3\x14\xde\x39\xac\x40\x5a\x31\xda\x1c\xa9\x72\x6d\xd5\x43\x9a\xa8\x79\x80\x6a\x4a\x9c\x89\x15\xb0\x91\x19\x22\x55\x11\xef\x5e\x0d\x24\xa4\x87\x2a\x2d\x07\x64\xe3\x8f\xff\x9f\xdf\xd3\xfa\xea\xe8\x03\x42\xe3\x89\x8d\xa1\xa6\x15\x8d\x90\x19\x00\x00\x5b\x4b\xb0\x66\x2a\x03\xc5\x43\xff\x5e\x54\xd2\x38\x5f\x53\xf3\xe1\x1a\x52\x77\x5a\xb8\x4a\x14\xed\x7d\x04\x39\x10\xe3\x45\xe8\x0d\xec\xf9\x0c\xc5\xe6\x18\x5e\x7c\x83\x30\x0c\x89\xaa\x9c\x4a\x1f\xb1\xb3\x3f\x23\xee\xf4\xff\x57\xd4\xc2\x9a\xdc\x18\xe7\x82\x94\x01\x19\xd5\x47\x84\x20\xa0\x3d\x8f\x49\x8b\x20\x66\xdf\x73\x35\x36\x59\x0e\xe7\x51\xb3\x96\x50\x6c\x94\x38\xd6\x9c\xd9\xf9\xb7\x4a\x76\x08\x5d\xf4\x1a\x6d\x3e\x62\xd2\xc6\x0e\xca\x25\xfc\x4d\xe1\x8b\x75\x1b\x49\xb8\x9b\x14\xd2\xf3\xda\xf3\x4a\x76\x58\x5e\xda\x11\x7a\xe6\x2d\x2a\xf9\x3a\x0d\xfe\xcd\xe4\xd3\x64\x21\x9a\x22\x94\x13\x39\x7f\x5b\xf9\xca\xab\xf0\x37\xf4\xba\x8d\x5d\x79\xd5\xa5\x98\xda\x9b\xfb\x6c\xb9\x6e\xe3\x96\xf8\xb8\xf1\xf1\x50\x82\x2d\x5c\x40\xb6\x37\xb1\x61\x2a\x87\xf1\x4d\x7b\x40\xd5\x14\x69\xba\xab\xeb\x21\x30\x4b\x51\xf3\x87\x71\xfa\x67\x09\x4c\x35\xdc\x9c\xd2\xb6\x1e\x7d\xf4\x75\x86\xaa\xf9\x17\xb9\x3b\x6b\xdc\x13\x53\x77\xb0\xb9\x19\xcc\x67\x00\x00\x00\xff\xff\x25\x66\x4b\x77\x79\x02\x00\x00" +var _macaron_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xbf\x6e\xe3\x30\x0c\xc6\x77\x3d\x05\x4f\x93\x0c\x1c\x2c\x5c\xc6\x1c\xb2\xde\xa1\x43\xda\xa0\x79\x80\x42\x75\x18\x85\x88\x4d\x1a\xb4\x1c\xa0\x08\xfc\xee\x85\xe4\xf4\x4f\x3a\xa4\xd5\x20\x88\xe4\x8f\x9f\xf8\xb1\x0f\xcd\x31\x44\x84\x2e\x10\x1b\x43\x5d\x2f\x9a\xc0\x19\x00\x00\xdb\x4a\xb4\x66\x7e\x46\x4a\x87\xf1\xb9\x6e\xa4\xf3\xa1\xa5\xee\xc5\x77\xa4\xfe\xb4\xf0\x8d\x28\xda\xdb\x08\x72\x24\xc6\x8b\xd0\x13\xd8\xf3\x19\xea\xcd\x31\xde\x87\x0e\x61\x9a\x32\xd5\x78\x95\x31\xe1\x60\xbf\x47\xfc\xe9\xcf\x8f\xa8\x85\x35\x95\x31\xde\x47\x59\x46\x64\xd4\x90\x10\xa2\x80\x8e\x5c\x9c\xd6\x51\xcc\x7e\xe4\xa6\x04\xae\x82\x73\xd1\x6c\x25\xd6\x1b\x25\x4e\x2d\x3b\xfb\xde\xd6\xc8\x0e\x61\x48\x41\x93\xad\x0a\x26\x7d\x1a\x60\xb9\x82\xec\xbd\x7e\xe8\x13\x09\x0f\xb3\x40\x3e\x25\xfb\x38\xf2\x5a\x76\xe8\x4a\x70\xc7\x5b\x54\x0a\x6d\xce\x54\xbf\xaf\xc1\xff\xf3\x2f\xa2\xd9\x85\xbb\x4e\xad\x43\x13\x54\xf8\x6b\xcb\x96\xf8\xb8\x09\xe9\xe0\x6c\xed\x23\xb2\xbd\xd4\xa7\x72\xd3\x1e\x50\x35\x4f\x37\xaf\xfd\x4d\x0d\x5d\x9e\xba\xfa\x5b\xaa\xbf\x56\xc0\xd4\xc2\xc7\xcc\xd9\xf8\xbf\x90\x42\xeb\x50\xb5\xfa\x24\x77\x63\x23\x7b\x62\x1a\x0e\xb6\x32\x93\x79\x0d\x00\x00\xff\xff\x27\x34\x78\x8e\x44\x02\x00\x00" func macaron_mirc_mainTmplBytes() ([]byte, error) { return bindataRead( @@ -768,8 +768,8 @@ func macaron_mirc_mainTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "macaron_mirc_main.tmpl", size: 633, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0xf6, 0xc7, 0xcd, 0x3d, 0xf6, 0x5e, 0x9e, 0x7e, 0x75, 0x91, 0xa0, 0x84, 0x68, 0xb0, 0x10, 0x3, 0xa, 0xac, 0xcb, 0x11, 0x53, 0x97, 0x76, 0x66, 0xa7, 0xc7, 0x89, 0x5e, 0xe4, 0x8e, 0xd2}} + info := bindataFileInfo{name: "macaron_mirc_main.tmpl", size: 580, mode: os.FileMode(0644), modTime: time.Unix(1585297814, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0x1b, 0x63, 0x65, 0x55, 0xb4, 0x5d, 0x61, 0x16, 0xa4, 0x3d, 0x24, 0x59, 0x7e, 0xc9, 0x4e, 0x1a, 0xfe, 0x3c, 0x7a, 0xab, 0x3e, 0xe1, 0x3e, 0xb3, 0xdd, 0xa5, 0x0, 0xbe, 0x2e, 0xae, 0x8c}} return a, nil } @@ -788,7 +788,7 @@ func macaron_mirc_routes_siteTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "macaron_mirc_routes_site.tmpl", size: 316, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "macaron_mirc_routes_site.tmpl", size: 316, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x29, 0xe4, 0xfc, 0x25, 0x86, 0xb8, 0x52, 0xa3, 0x2d, 0xd1, 0x31, 0x36, 0xc1, 0x7e, 0x59, 0xdf, 0x65, 0x39, 0x63, 0x2, 0x5b, 0xf3, 0x2d, 0x15, 0x8e, 0xd2, 0x28, 0xb0, 0x97, 0x2d, 0x35}} return a, nil } @@ -808,7 +808,7 @@ func macaron_mirc_routes_site_v1Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "macaron_mirc_routes_site_v1.tmpl", size: 349, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "macaron_mirc_routes_site_v1.tmpl", size: 349, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x8d, 0xaf, 0x66, 0x41, 0x48, 0x83, 0xfb, 0xe1, 0x89, 0x44, 0x2a, 0xd2, 0x28, 0xd, 0xc2, 0xe9, 0xa, 0x24, 0xd5, 0xa, 0xe9, 0xed, 0x86, 0xa2, 0xa4, 0xba, 0x75, 0x94, 0xb8, 0xb, 0xb}} return a, nil } @@ -828,7 +828,7 @@ func macaron_mirc_routes_site_v2Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "macaron_mirc_routes_site_v2.tmpl", size: 358, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "macaron_mirc_routes_site_v2.tmpl", size: 358, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0x2, 0x21, 0xb6, 0xad, 0x80, 0xee, 0xad, 0x51, 0xf0, 0x30, 0xa9, 0x20, 0x4f, 0x8, 0x22, 0x74, 0x6e, 0x5c, 0x2a, 0xbb, 0x9c, 0x26, 0x4, 0x2a, 0xa4, 0xff, 0x41, 0x20, 0xd5, 0x5b, 0x90}} return a, nil } @@ -853,7 +853,7 @@ func makefileTmpl() (*asset, error) { return a, nil } -var _mux_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x31\x0a\x42\x31\x0c\x06\xe0\x3d\xa7\xf8\x47\x5d\x52\x5b\x04\x6f\x21\x5e\xa1\x6a\xa9\xc1\x86\x60\x30\x45\x79\xf4\xee\xee\xee\x9f\xda\x3d\x46\xc3\xb6\x81\x2f\xcf\x7e\xae\xda\xb0\x16\x51\x37\x64\xce\x85\xc8\xdb\x2b\xc4\x1b\x76\x04\x00\x5d\xde\x8f\xb8\xf2\xcd\x34\xd5\x21\xfa\x4d\x2a\x9e\x66\xc1\x2c\x5c\xf8\xf0\x4f\xba\xb9\x8c\x51\x93\xc6\x07\x33\xf3\x89\x8f\xb4\xa7\x5f\x00\x00\x00\xff\xff\x43\x4a\x0e\x99\x71\x00\x00\x00" +var _mux_go_modTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xca\x31\x0a\x42\x31\x0c\x06\xe0\x3d\xa7\xf8\x47\x5d\x52\x5b\x05\x6f\x21\x5e\xa1\x6a\xa9\xc1\x86\x60\x30\x45\x79\xbc\xbb\xbb\xbf\xfd\x53\x7b\xc4\x68\x58\x16\xf0\xf5\xd5\x2f\x55\x1b\xd6\x95\xa8\x1b\x32\xe7\x42\xe4\xed\x1d\xe2\x0d\x3b\x02\x80\x2e\x9f\x67\xdc\xf8\x6e\x9a\xea\x10\xfd\x25\x15\x4f\xb3\x60\x16\x3e\xf2\x61\x4b\xba\xb9\x8c\x51\x93\xc6\x17\x33\xf3\x99\x4f\xb4\xa7\x7f\x00\x00\x00\xff\xff\x04\xd8\x4a\x36\x71\x00\x00\x00" func mux_go_modTmplBytes() ([]byte, error) { return bindataRead( @@ -868,8 +868,8 @@ func mux_go_modTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "mux_go_mod.tmpl", size: 113, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xd6, 0x9b, 0x99, 0xf4, 0x6a, 0xee, 0x6d, 0xdb, 0x12, 0xb7, 0x62, 0x69, 0xf8, 0xfc, 0xa4, 0xfc, 0x7c, 0x9, 0x3e, 0x63, 0x48, 0xe6, 0x65, 0x4b, 0xf5, 0x5, 0x2c, 0xa6, 0xea, 0x9e, 0xc8}} + info := bindataFileInfo{name: "mux_go_mod.tmpl", size: 113, mode: os.FileMode(0644), modTime: time.Unix(1585297533, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0x3c, 0xd, 0x61, 0x5d, 0x85, 0xc6, 0x36, 0xe9, 0x76, 0x10, 0xce, 0x39, 0x4a, 0xd3, 0x53, 0x9b, 0x9e, 0xec, 0x9, 0x4c, 0x1a, 0x67, 0x77, 0x16, 0xda, 0x2c, 0x6b, 0x84, 0x9e, 0xca, 0xfe}} return a, nil } @@ -893,7 +893,7 @@ func mux_mainTmpl() (*asset, error) { return a, nil } -var _mux_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xa3\x40\x0c\x86\xef\xf3\x14\xde\x39\xac\x40\x5a\x31\xda\x1c\x59\xe5\xba\x55\x0f\x69\xa2\xe6\x01\xaa\x29\x71\x26\x56\xc0\x83\x8c\x89\x5a\x45\xbc\x7b\x35\x90\x90\x1e\xaa\xb4\x1c\x90\x8d\x3f\xfe\x7f\x7e\x4f\xeb\xab\xa3\x0f\x08\x8d\x27\x36\x86\x9a\x36\x8a\x42\x66\x00\x00\x6c\x1d\x83\x35\x53\x19\x48\x0f\xfd\x6b\x51\xc5\xc6\xf9\x9a\x9a\x77\xd7\x90\xb8\xd3\xc2\x55\x51\xd0\xde\x47\x90\x03\x31\x5e\x84\x5e\xc0\x9e\xcf\x50\x6c\x8e\xe1\xc9\x37\x08\xc3\x90\xa8\xca\x49\xec\x15\x3b\xfb\x3d\xe2\x4e\x7f\x7f\x44\x2d\xac\xc9\x8d\x71\x2e\xc4\x32\x20\xa3\x78\x45\x08\x11\xa4\xe7\x31\x69\x11\xa2\xd9\xf7\x5c\x8d\x4d\x96\xc3\x79\xd4\xac\x63\x28\x36\x42\xac\x35\x67\x76\xfe\xad\x8a\x3b\x84\x4e\xbd\xa8\xcd\x47\x2c\xb6\xda\x41\xb9\x84\xdf\x29\x7c\xb1\x6e\x95\x22\x77\x93\x42\x7a\x9e\x7b\x5e\xc5\x1d\x96\x97\x76\x84\x1e\x79\x8b\x42\xbe\x4e\x83\x3f\x33\xf9\x30\x59\x44\x49\x11\xca\x89\x9c\xbf\xad\xfa\xb7\x2f\xc8\x75\xab\x5d\x79\xd5\x24\x4d\xed\xcd\x79\xb6\x5b\xb7\xba\x25\x3e\x6e\xbc\x1e\x4a\xb0\x85\x0b\xc8\xf6\x26\x36\x4c\xe5\x30\xbe\x69\x0f\x28\x92\xe2\x4c\xf7\x74\x3d\x00\x66\x29\x66\xfe\x6f\x9c\xfe\x5a\x02\x53\x0d\x37\xa7\xb4\xa9\xff\x5e\x7d\x9d\xa1\x48\xfe\x49\xee\xce\x0a\xf7\xc4\xd4\x1d\x6c\x6e\x06\xf3\x11\x00\x00\xff\xff\xf4\xd5\x60\xd2\x75\x02\x00\x00" +var _mux_mirc_mainTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcf\x4e\xc3\x30\x0c\xc6\xef\x79\x0a\x93\x53\x2a\xa1\x46\xec\x38\xb4\x2b\x88\xc3\x60\x62\x0f\x80\x42\xe7\x65\xd1\x52\xbb\x72\xd3\x09\x34\xf5\xdd\x51\xd2\xf1\x67\x1c\x06\x3d\x54\xb1\xfd\xcb\x97\xef\x73\xe7\x9a\xbd\xf3\x08\xad\x0b\xa4\x54\x68\x3b\x96\x04\x46\x01\x00\xe8\xc8\x5e\xab\xe9\xe8\x43\xda\x0d\xaf\x75\xc3\xad\x75\x31\xb4\xef\xb6\x0d\x62\x0f\x33\xdb\xb0\xa0\xbe\x8c\x20\xf9\x40\x78\x12\x7a\x01\x7d\x3c\x42\xbd\xda\xfb\x47\xd7\x22\x8c\x63\xa6\x1a\x2b\x3c\x24\xec\xf5\xdf\x88\x3d\xdc\xfc\x8b\x9a\x69\x55\x29\x65\xad\xe7\xb9\x47\x42\x71\x09\xc1\x33\xc8\x40\x25\x69\xed\x59\x6d\x07\x6a\x4a\x61\x2a\x38\x16\xcd\xc8\xbe\x5e\x49\xa0\x14\xc9\xe8\xaf\x6b\x0d\x6f\x10\xfa\xe4\x24\xe9\xaa\x60\xdc\xa5\x1e\xe6\x0b\xc8\xd9\xeb\xa7\x2e\x05\xa6\x7e\x12\xc8\x5f\xe9\x3e\x0f\xb4\xe4\x0d\x9a\x52\x3c\xd0\x1a\x25\xb8\x98\x3b\xd5\xf5\x39\x78\x3f\xbd\xc2\x92\x53\x98\xf3\xd6\x72\x78\xfb\x8d\xaf\x03\xed\x57\x2e\xed\x8c\xae\xad\x47\xd2\xa7\xf9\x58\xfe\x61\x0b\x28\x92\x9d\x4d\x2b\xff\x54\x42\x93\x1d\x57\xb7\x65\x7a\xb5\x00\x0a\x11\xbe\xfd\xe6\xd0\x77\x2e\xb9\x68\x50\xa4\xfa\x21\x77\x61\x1b\xdb\x40\xa1\xdf\xe9\x4a\x8d\xea\x23\x00\x00\xff\xff\x7e\x81\x17\xc9\x40\x02\x00\x00" func mux_mirc_mainTmplBytes() ([]byte, error) { return bindataRead( @@ -908,8 +908,8 @@ func mux_mirc_mainTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "mux_mirc_main.tmpl", size: 629, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x67, 0xa1, 0xca, 0x85, 0xb6, 0xde, 0xc0, 0xcb, 0xd6, 0x89, 0x6d, 0x3b, 0xb7, 0xd2, 0x6b, 0x98, 0xa5, 0xc5, 0x3, 0x37, 0xeb, 0xe5, 0xb6, 0xd0, 0x60, 0xa8, 0x69, 0xc5, 0xd8, 0xb7, 0x8f, 0x46}} + info := bindataFileInfo{name: "mux_mirc_main.tmpl", size: 576, mode: os.FileMode(0644), modTime: time.Unix(1585297814, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfc, 0x15, 0xff, 0x6e, 0xf3, 0xbd, 0xed, 0xd7, 0x42, 0xd, 0x7a, 0x24, 0x12, 0x5b, 0xd, 0xa2, 0xed, 0x1a, 0x78, 0x84, 0xfd, 0x40, 0x92, 0x25, 0x9c, 0x8d, 0xe1, 0xa1, 0xe3, 0x8f, 0x60, 0xe5}} return a, nil } @@ -928,7 +928,7 @@ func mux_mirc_routes_siteTmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "mux_mirc_routes_site.tmpl", size: 392, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "mux_mirc_routes_site.tmpl", size: 392, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0x33, 0xa2, 0xdf, 0x97, 0x49, 0xf1, 0x0, 0x56, 0x5f, 0x3d, 0x69, 0x98, 0xc, 0x4a, 0x41, 0x2e, 0x89, 0xbb, 0x49, 0x25, 0x5d, 0x1, 0xa0, 0x5d, 0xca, 0xe5, 0x3e, 0xd1, 0x99, 0x16, 0xdb}} return a, nil } @@ -948,7 +948,7 @@ func mux_mirc_routes_site_v1Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "mux_mirc_routes_site_v1.tmpl", size: 425, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "mux_mirc_routes_site_v1.tmpl", size: 425, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x99, 0x54, 0x22, 0xf5, 0x82, 0xdf, 0x79, 0x41, 0xee, 0x18, 0x93, 0x57, 0x4b, 0x12, 0xa7, 0xe, 0xc4, 0xdd, 0x88, 0x19, 0xa4, 0x41, 0x22, 0xe3, 0x9f, 0x75, 0x5f, 0xf9, 0x39, 0xf6, 0x93}} return a, nil } @@ -968,7 +968,7 @@ func mux_mirc_routes_site_v2Tmpl() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "mux_mirc_routes_site_v2.tmpl", size: 434, mode: os.FileMode(0644), modTime: time.Unix(1585131810, 0)} + info := bindataFileInfo{name: "mux_mirc_routes_site_v2.tmpl", size: 434, mode: os.FileMode(0644), modTime: time.Unix(1585134022, 0)} a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xf5, 0xf7, 0x85, 0x90, 0x42, 0x45, 0x59, 0xa1, 0x19, 0x85, 0x14, 0x75, 0x13, 0xee, 0x41, 0xb6, 0xee, 0xd, 0xa8, 0x72, 0x43, 0xdf, 0xf3, 0xb0, 0xc3, 0x95, 0x35, 0xd, 0x41, 0xd4, 0x62}} return a, nil } diff --git a/mirc/version/version.go b/mirc/version/version.go index be85ac9..e817802 100644 --- a/mirc/version/version.go +++ b/mirc/version/version.go @@ -16,6 +16,6 @@ var ( // AppVer version of Mirc var AppVer = semver.Version{ Major: 2, - Minor: 2, - Patch: 1, + Minor: 3, + Patch: 0, }