diff options
Diffstat (limited to 'gentoobrowse-api/service/main.cpp')
-rw-r--r-- | gentoobrowse-api/service/main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gentoobrowse-api/service/main.cpp b/gentoobrowse-api/service/main.cpp index 1429a72..a936b74 100644 --- a/gentoobrowse-api/service/main.cpp +++ b/gentoobrowse-api/service/main.cpp @@ -2,6 +2,7 @@ #include <Ice/ObjectAdapter.h> #include <icetrayService.h> #include "portageimpl.h" +#include "maintenanceimpl.h" namespace Gentoo { namespace Service { @@ -11,6 +12,7 @@ class Api : public IceTray::Service { { auto db = getConnectionPool(ic, "postgresql", "GentooBrowseAPI"); adp->add(new Portage(db), ic->stringToIdentity("portage")); + adp->add(new Maintenance(db), ic->stringToIdentity("maintenance")); } }; |