forked from atlassian-api/atlassian-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
44 lines (41 loc) · 1.04 KB
/
Copy path__init__.py
File metadata and controls
44 lines (41 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
"""
Atlassian Python API
"""
from .bamboo import Bamboo
from .bitbucket import Bitbucket
from .bitbucket import Bitbucket as Stash
from .cloud_admin import CloudAdminOrgs, CloudAdminUsers
from .confluence import ConfluenceCloud, ConfluenceServer, Confluence
from .crowd import Crowd
from .insight import Insight
from .insight import Insight as Assets # used for Insight on-premise
from .assets import AssetsCloud # used for Insight Cloud
from .jira import Jira
from .marketplace import MarketPlace
from .portfolio import Portfolio
from .service_desk import ServiceDesk
from .service_desk import ServiceDesk as ServiceManagement
from .tempo import TempoCloud, TempoServer
from .xray import Xray
__all__ = [
"Confluence",
"ConfluenceCloud",
"ConfluenceServer",
"Jira",
"Bitbucket",
"CloudAdminOrgs",
"CloudAdminUsers",
"Portfolio",
"Bamboo",
"Stash",
"Crowd",
"ServiceDesk",
"ServiceManagement",
"MarketPlace",
"Xray",
"Insight",
"Assets",
"AssetsCloud",
"TempoCloud",
"TempoServer",
]