Skip to content
This repository has been archived by the owner on May 4, 2023. It is now read-only.

Commit

Permalink
folder restructuring
Browse files Browse the repository at this point in the history
  • Loading branch information
Trevor Phillips committed Nov 4, 2020
1 parent cf82b93 commit c7109a0
Show file tree
Hide file tree
Showing 11 changed files with 7 additions and 7 deletions.
Empty file.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from urllib import parse

from .api import Api
from ..api import Api


class BattlenetOauthApi(Api):
Expand Down
6 changes: 3 additions & 3 deletions blizzardapi/blizzard_api.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .battlenet_api import BattlenetApi
from .diablo3_api import Diablo3Api
from .wow_api import WowApi
from .battlenet.battlenet_api import BattlenetApi
from .diablo3.diablo3_api import Diablo3Api
from .wow.wow_api import WowApi


class BlizzardApi:
Expand Down
Empty file added blizzardapi/diablo3/__init__.py
Empty file.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .api import Api
from ..api import Api


class Diablo3GameDataApi(Api):
Expand Down
Empty file added blizzardapi/wow/__init__.py
Empty file.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .api import Api
from ..api import Api


class WowGameDataApi(Api):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .api import Api
from ..api import Api


class WowProfileApi(Api):
Expand Down

0 comments on commit c7109a0

Please sign in to comment.