add containers
This commit is contained in:
parent
84182672c7
commit
e839f3346c
1 changed files with 2 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
from .stacks import Stacks
|
from .stacks import Stacks
|
||||||
from .endpoints import Endpoints
|
from .endpoints import Endpoints
|
||||||
|
from .containers import Containers
|
||||||
|
|
||||||
|
|
||||||
class PortainerService:
|
class PortainerService:
|
||||||
|
@ -8,3 +9,4 @@ class PortainerService:
|
||||||
self.token = token
|
self.token = token
|
||||||
self.stacks = Stacks(base_url, token)
|
self.stacks = Stacks(base_url, token)
|
||||||
self.endpoints = Endpoints(base_url, token)
|
self.endpoints = Endpoints(base_url, token)
|
||||||
|
self.containers = Containers(base_url, token)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue