Skip to content

Commit

Permalink
Merge pull request #62 from hidevopsio/go-mod-update
Browse files Browse the repository at this point in the history
update go mod
  • Loading branch information
john-deng authored Dec 10, 2018
2 parents 30e0246 + c491ef3 commit b5bcfb0
Show file tree
Hide file tree
Showing 5 changed files with 107 additions and 29 deletions.
2 changes: 1 addition & 1 deletion Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

[[constraint]]
name = "github.com/kataras/iris"
version = "v10.7.0"
version = "v11.0.3"

[[constraint]]
branch = "master"
Expand Down
14 changes: 9 additions & 5 deletions examples/web/jwt/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,18 @@ package main

import (
_ "hidevops.io/hiboot/examples/web/jwt/controller"
"hidevops.io/hiboot/pkg/app"
"hidevops.io/hiboot/pkg/app/web"
// starter/actuator is response for health check, etc.
_ "hidevops.io/hiboot/pkg/starter/actuator"
_ "hidevops.io/hiboot/pkg/starter/locale"
_ "hidevops.io/hiboot/pkg/starter/logging"
"hidevops.io/hiboot/pkg/starter/actuator"
"hidevops.io/hiboot/pkg/starter/jwt"
"hidevops.io/hiboot/pkg/starter/logging"
"hidevops.io/hiboot/pkg/starter/websocket"
)

func main() {
// create new web application and run it
web.NewApplication().Run()
web.NewApplication().
SetProperty("app.profiles.filter", true).
SetProperty(app.ProfilesInclude, actuator.Profile, logging.Profile, websocket.Profile, jwt.Profile).
Run()
}
44 changes: 22 additions & 22 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
module hidevops.io/hiboot

require (
github.com/BurntSushi/toml v0.3.0
github.com/Joker/jade v0.0.0-20180419144541-8828253bfc54
github.com/BurntSushi/toml v0.3.1
github.com/Joker/jade v1.0.0
github.com/Shopify/goreferrer v0.0.0-20180807163728-b9777dc9f9cc
github.com/ajg/form v0.0.0-20160802194845-cc2954064ec9
github.com/aymerick/raymond v0.0.0-20180322193309-b565731e1464
github.com/ajg/form v0.0.0-20160822230020-523a5da1a92f
github.com/aymerick/raymond v2.0.2+incompatible
github.com/davecgh/go-spew v1.1.1
github.com/deckarep/golang-set v1.7.1
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/eknkc/amber v0.0.0-20171010120322-cdade1c07385
github.com/fatih/camelcase v1.0.0
github.com/fatih/structs v1.0.0
github.com/flosch/pongo2 v0.0.0-20180412215150-e7cf9ea5ca9c
github.com/flosch/pongo2 v0.0.0-20180809100617-24195e6d38b0
github.com/fsnotify/fsnotify v1.4.7
github.com/gavv/monotime v0.0.0-20171021193802-6f8212e8d10d
github.com/golang/mock v1.1.1
github.com/golang/protobuf v1.2.0
github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135
github.com/google/go-querystring v1.0.0
github.com/gorilla/websocket v1.4.0
github.com/hashicorp/go-version v1.0.0
github.com/hashicorp/hcl v1.0.0
Expand All @@ -29,27 +29,27 @@ require (
github.com/iris-contrib/httpexpect v0.0.0-20180314041918-ebe99fcebbce
github.com/iris-contrib/i18n v0.0.0-20171121225848-987a633949d0
github.com/iris-contrib/middleware v0.0.0-20171114084220-1060fbb0ce08
github.com/json-iterator/go v0.0.0-20180418083454-f88871b601a2
github.com/juju/errors v0.0.0-20170703010042-c7d06af17c68
github.com/json-iterator/go v1.1.5
github.com/juju/errors v0.0.0-20180806074554-22422dad46e1
github.com/kataras/golog v0.0.0-20180321173939-03be10146386
github.com/kataras/iris v0.0.0-20181118033431-39b8b1eb00ea
github.com/kataras/pio v0.0.0-20170809181920-825e39f34365
github.com/kataras/iris v11.0.3+incompatible
github.com/kataras/pio v0.0.0-20180511174041-a9733b5b6b83
github.com/kataras/survey v2.0.0+incompatible
github.com/klauspost/compress v1.2.1
github.com/klauspost/cpuid v0.0.0-20170728055534-ae7887de9fa5
github.com/klauspost/compress v1.4.0
github.com/klauspost/cpuid v0.0.0-20180405133222-e7e905edc00e
github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6
github.com/magiconair/properties v1.8.0
github.com/mattn/go-colorable v0.0.9
github.com/mattn/go-isatty v0.0.4
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b
github.com/microcosm-cc/bluemonday v0.0.0-20180327211928-995366fdf961
github.com/microcosm-cc/bluemonday v1.0.1
github.com/mitchellh/mapstructure v1.1.2
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
github.com/modern-go/reflect2 v0.0.0-20180228065516-1df9eeb2bb81
github.com/modern-go/reflect2 v1.0.1
github.com/moul/http2curl v1.0.0
github.com/pelletier/go-toml v1.2.0
github.com/pmezard/go-difflib v1.0.0
github.com/ryanuber/columnize v0.0.0-20170703205827-abc90934186a
github.com/ryanuber/columnize v2.1.0+incompatible
github.com/sergi/go-diff v1.0.0
github.com/shurcooL/sanitized_anchor_name v0.0.0-20170918181015-86672fcb3f95
github.com/sony/sonyflake v0.0.0-20160530021500-fa881fb1052b
Expand All @@ -62,19 +62,19 @@ require (
github.com/valyala/bytebufferpool v1.0.0
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415
github.com/xeipuuv/gojsonschema v0.0.0-20180407105557-2c8e4be869c1
github.com/yalp/jsonpath v0.0.0-20180419081435-91a5860ab683
github.com/yudai/gojsondiff v0.0.0-20170107030110-7b1b7adf999d
github.com/xeipuuv/gojsonschema v0.0.0-20180816142147-da425ebb7609
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0
github.com/yudai/gojsondiff v1.0.0
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82
golang.org/x/crypto v0.0.0-20180411161317-d6449816ce06
golang.org/x/net v0.0.0-20180418062111-d41e8174641f
golang.org/x/sys v0.0.0-20180906133057-8cf3aee42992
golang.org/x/crypto v0.0.0-20180927165925-5295e8364332
golang.org/x/net v0.0.0-20181102091132-c10e9556a7bc
golang.org/x/sys v0.0.0-20180928133829-e4b3c5e90611
golang.org/x/text v0.3.0
golang.org/x/vgo v0.0.0-20180912184537-9d567625acf4 // indirect
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8
google.golang.org/grpc v1.14.0
gopkg.in/go-playground/validator.v8 v8.18.2
gopkg.in/ini.v1 v1.36.0
gopkg.in/ini.v1 v1.38.3
gopkg.in/yaml.v2 v2.2.1
hidevops.io/viper v1.3.2
)
Loading

0 comments on commit b5bcfb0

Please sign in to comment.