~psivaa/uci-engine/lander-jenkins-plugin

« back to all changes in this revision

Viewing changes to image-builder/imagebuilder/resources/root.py

  • Committer: Paul Larson
  • Date: 2013-12-12 05:20:33 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: paul.larson@canonical.com-20131212052033-c4oouv82qrze3yty
Stub APIs and restish framework for image-builder

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Ubuntu CI Services
 
2
# Copyright 2013 Canonical Ltd.
 
3
 
 
4
# This program is free software: you can redistribute it and/or modify it
 
5
# under the terms of the GNU Affero General Public License version 3, as
 
6
# published by the Free Software Foundation.
 
7
 
 
8
# This program is distributed in the hope that it will be useful, but
 
9
# WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
# PURPOSE.  See the GNU Affero General Public License for more details.
 
12
 
 
13
# You should have received a copy of the GNU Affero General Public License
 
14
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 
 
16
import logging
 
17
 
 
18
from restish import resource
 
19
 
 
20
from imagebuilder.resources import v1
 
21
 
 
22
 
 
23
log = logging.getLogger(__name__)
 
24
 
 
25
 
 
26
class Root(resource.Resource):
 
27
    @resource.child('api/v1')
 
28
    def api(self, request, segments):
 
29
        log.debug('[api]: %s %s', request.url, str(segments))
 
30
        return v1.API()