lang: funcs: core: Drop unnecessary core prefix from imports

This unbreaks the mcl bindata code. Of course we could change the parser
to allow this prefix, but this is cleaner. The packages still have a
core prefix, which it seems we could also remove, but this isn't
particularly important for anything.
This commit is contained in:
James Shubin
2019-02-07 09:29:33 -05:00
parent 04048b13ed
commit f368f75209
35 changed files with 7 additions and 7 deletions

View File

@@ -19,11 +19,11 @@ package core
import (
// import so the funcs register
_ "github.com/purpleidea/mgmt/lang/funcs/core/coredatetime"
_ "github.com/purpleidea/mgmt/lang/funcs/core/coreexample"
_ "github.com/purpleidea/mgmt/lang/funcs/core/corefmt"
_ "github.com/purpleidea/mgmt/lang/funcs/core/coremath"
_ "github.com/purpleidea/mgmt/lang/funcs/core/coreos"
_ "github.com/purpleidea/mgmt/lang/funcs/core/corestrings"
_ "github.com/purpleidea/mgmt/lang/funcs/core/coresys"
_ "github.com/purpleidea/mgmt/lang/funcs/core/datetime"
_ "github.com/purpleidea/mgmt/lang/funcs/core/example"
_ "github.com/purpleidea/mgmt/lang/funcs/core/fmt"
_ "github.com/purpleidea/mgmt/lang/funcs/core/math"
_ "github.com/purpleidea/mgmt/lang/funcs/core/os"
_ "github.com/purpleidea/mgmt/lang/funcs/core/strings"
_ "github.com/purpleidea/mgmt/lang/funcs/core/sys"
)