7 changed files with 14 additions and 14 deletions
@ -1,11 +1,11 @@ |
|||
""" |
|||
All high level features of :class:`steam.client.SteamClient` are here in seperate submodules. |
|||
All high level features of :class:`steam.client.SteamClient` are implemented here in seperate submodules. |
|||
""" |
|||
from steam.client.features.misc import Misc |
|||
from steam.client.features.user import User |
|||
from steam.client.features.web import Web |
|||
from steam.client.builtins.misc import Misc |
|||
from steam.client.builtins.user import User |
|||
from steam.client.builtins.web import Web |
|||
|
|||
class FeatureBase(Misc, User, Web): |
|||
class BuiltinBase(Misc, User, Web): |
|||
""" |
|||
This object is used as base to implement all high level functionality. |
|||
The features are seperated into submodules. |
Loading…
Reference in new issue