1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-09 13:05:56 +00:00

update the vendor of the new iris-contrib/i18n to support multi locale files as requested at: https://github.com/kataras/iris/issues/815

Former-commit-id: 06d7c704caf97eae1fc81228425fddb588f2f68c
This commit is contained in:
kataras
2017-11-22 01:01:45 +02:00
parent 53ed4f3a4e
commit 42e7faec52
3 changed files with 30 additions and 16 deletions

View File

@@ -13,7 +13,10 @@ import (
//
// Look the "APIBuilder" for its implementation.
type Party interface {
// Party creates and returns a new child Party with the following features.
// Party groups routes which may have the same prefix and share same handlers,
// returns that new rich subrouter.
//
// You can even declare a subdomain with relativePath as "mysub." or see `Subdomain`.
Party(relativePath string, middleware ...context.Handler) Party
// PartyFunc same as `Party`, groups routes that share a base path or/and same handlers.
// However this function accepts a function that receives this created Party instead.