blob: 4b7364485e43af3aaf18959bba2881becef60782 [file] [log] [blame]
Soren Hansenbc1d3a02011-09-08 13:33:17 +02001import kong.config
2import kong.nova
3
4
5class Manager(object):
6 """Top-level object to access OpenStack resources."""
7
Soren Hansend6b047a2011-09-09 13:39:32 +02008 def __init__(self, nova):
9 self.nova = kong.nova.API(nova['host'],
10 nova['port'],
11 nova['ver'],
12 nova['user'],
Aaron Lee35b8c922011-10-18 17:07:19 -050013 nova['key'],
14 nova['project'])