kopia lustrzana https://github.com/Langenfeld/py-gitea
pull/3/head
rodzic
f268ebad1b
commit
f358ea6c0a
12
__init__.py
12
__init__.py
|
@ -0,0 +1,12 @@
|
||||||
|
from .gitea import (
|
||||||
|
Gitea,
|
||||||
|
User,
|
||||||
|
Organization,
|
||||||
|
Team,
|
||||||
|
Repository,
|
||||||
|
Branch,
|
||||||
|
NotFoundException,
|
||||||
|
AlreadyExistsException,
|
||||||
|
Issue,
|
||||||
|
Milestone,
|
||||||
|
)
|
|
@ -5,9 +5,9 @@ from .gitea import (
|
||||||
Team,
|
Team,
|
||||||
Repository,
|
Repository,
|
||||||
Branch,
|
Branch,
|
||||||
version,
|
|
||||||
NotFoundException,
|
NotFoundException,
|
||||||
AlreadyExistsException,
|
AlreadyExistsException,
|
||||||
Issue,
|
Issue,
|
||||||
Milestone,
|
Milestone,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,6 @@ import logging
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
logging = logging.getLogger("gitea")
|
logging = logging.getLogger("gitea")
|
||||||
version = "0.4.6"
|
|
||||||
|
|
||||||
class AlreadyExistsException(Exception):
|
class AlreadyExistsException(Exception):
|
||||||
pass
|
pass
|
||||||
|
|
Ładowanie…
Reference in New Issue