Skip to content

Commit

Permalink
fix cycle pkg dependents
Browse files Browse the repository at this point in the history
  • Loading branch information
alimy committed Mar 3, 2020
1 parent 2b3ea2c commit f0da66a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions core/core.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,14 @@ var (

// parsers parser list
parsers = make(map[string]Parser, 1)
)

// Generator Names
var (
// Generator Names
GeneratorGin = "gin"
GeneratorChi = "chi"
GeneratorMux = "mux"
GeneratorHttpRouter = "httprouter"
)

// Parser Names
var (
// Parser Names
ParserStructTag = "structTag"
)

Expand Down
2 changes: 1 addition & 1 deletion engine.go → engine/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by Apache License 2.0 that
// can be found in the LICENSE file.

package mir
package engine

import (
"errors"
Expand Down

0 comments on commit f0da66a

Please sign in to comment.