-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
helpers.go
49 lines (46 loc) · 1.09 KB
/
helpers.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package helpers
import (
"github.com/gobuffalo/helpers/content"
"github.com/gobuffalo/helpers/debug"
"github.com/gobuffalo/helpers/encoders"
"github.com/gobuffalo/helpers/env"
"github.com/gobuffalo/helpers/escapes"
"github.com/gobuffalo/helpers/forms"
"github.com/gobuffalo/helpers/forms/bootstrap"
"github.com/gobuffalo/helpers/hctx"
"github.com/gobuffalo/helpers/inflections"
"github.com/gobuffalo/helpers/iterators"
"github.com/gobuffalo/helpers/meta"
"github.com/gobuffalo/helpers/paths"
"github.com/gobuffalo/helpers/tags"
"github.com/gobuffalo/helpers/text"
)
var BootstrapForms = bootstrap.New()
var Content = content.New()
var Debug = debug.New()
var Encoders = encoders.New()
var Env = env.New()
var Escapes = escapes.New()
var Forms = forms.New()
var Inflections = inflections.New()
var Iterators = iterators.New()
var Meta = meta.New()
var Paths = paths.New()
var Tags = tags.New()
var Text = text.New()
var ALL = func() hctx.Map {
return hctx.Merge(
BootstrapForms,
Content,
Debug,
Encoders,
Env,
Escapes,
Inflections,
Iterators,
Meta,
Paths,
Tags,
Text,
)
}