move helloworld to services/
diff --git a/xos/observers/helloworld/steps/sync_hello.py b/xos/observers/helloworld/steps/sync_hello.py
index 7071ea0..880d570 100644
--- a/xos/observers/helloworld/steps/sync_hello.py
+++ b/xos/observers/helloworld/steps/sync_hello.py
@@ -4,7 +4,7 @@
 from django.db.models import F, Q
 from xos.config import Config
 from observer.syncstep import SyncStep
-from helloworld.models import Hello,World
+from services.helloworld.models import Hello,World
 from util.logger import Logger, logging
 
 parentdir = os.path.join(os.path.dirname(__file__),"..")
diff --git a/xos/observers/helloworld/steps/sync_world.py b/xos/observers/helloworld/steps/sync_world.py
index 01e285f..a97d320 100644
--- a/xos/observers/helloworld/steps/sync_world.py
+++ b/xos/observers/helloworld/steps/sync_world.py
@@ -4,7 +4,7 @@
 from django.db.models import F, Q
 from xos.config import Config
 from observer.syncstep import SyncStep
-from helloworld.models import Hello,World
+from services.helloworld.models import Hello,World
 from util.logger import Logger, logging
 
 # hpclibrary will be in steps/..
diff --git a/xos/helloworld/__init__.py b/xos/services/helloworld/__init__.py
similarity index 100%
rename from xos/helloworld/__init__.py
rename to xos/services/helloworld/__init__.py
diff --git a/xos/helloworld/models.py b/xos/services/helloworld/models.py
similarity index 100%
rename from xos/helloworld/models.py
rename to xos/services/helloworld/models.py
diff --git a/xos/helloworld/view.py b/xos/services/helloworld/view.py
similarity index 97%
rename from xos/helloworld/view.py
rename to xos/services/helloworld/view.py
index 7024747..ab170a2 100644
--- a/xos/helloworld/view.py
+++ b/xos/services/helloworld/view.py
@@ -3,7 +3,7 @@
 from django import template
 from monitor import driver
 from core.models import *
-from helloworld.models import *
+from services.helloworld.models import *
 import json
 import os
 import time