6 lines
149 B
Python
6 lines
149 B
Python
from portainer import PortainerApi
|
|
|
|
|
|
class Portainer:
|
|
def __init__(self, base_url, token):
|
|
self.portainer = PortainerApi(base_url, token) |