X-Git-Url: http://git.veekun.com/zzz-spline-gts.git/blobdiff_plain/b857c1e49fbc463e8c25c85fc0ec443d7c7d653f:/spline/plugins/gts/__init__.py..04080d76b1d682b28f89e5d9403759a3782fb8f3:/splinext/gts/__init__.py diff --git a/spline/plugins/gts/__init__.py b/splinext/gts/__init__.py similarity index 83% rename from spline/plugins/gts/__init__.py rename to splinext/gts/__init__.py index c1b0fb5..bd10c07 100644 --- a/spline/plugins/gts/__init__.py +++ b/splinext/gts/__init__.py @@ -7,8 +7,8 @@ from spline.lib.plugin import PluginBase, PluginLink, Priority import spline.model as model import spline.model.meta as meta -import spline.plugins.gts.controllers.gts -import spline.plugins.gts.model +import splinext.gts.controllers.gts +import splinext.gts.model def add_routes_hook(map, *args, **kwargs): """Hook to inject some of our behavior into the routes configuration.""" @@ -20,12 +20,12 @@ def add_routes_hook(map, *args, **kwargs): class GTSPlugin(PluginBase): def controllers(self): return dict( - gts = spline.plugins.gts.controllers.gts.GTSController, + gts = splinext.gts.controllers.gts.GTSController, ) def model(self): return [ - spline.plugins.gts.model.GTSPokemon, + splinext.gts.model.GTSPokemon, ] def template_dirs(self):