From 22bdb2e6879f4ce2c382d827cf5be0d085848924 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Wed, 30 Dec 2015 09:55:49 +0000 Subject: [PATCH] move everything from client to core --- steam/{client => core}/__init__.py | 0 steam/{client => core}/cm.py | 8 ++++---- steam/{client => core}/connection.py | 0 steam/{client => core}/crypto.py | 0 steam/{client => core}/msg.py | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename steam/{client => core}/__init__.py (100%) rename steam/{client => core}/cm.py (98%) rename steam/{client => core}/connection.py (100%) rename steam/{client => core}/crypto.py (100%) rename steam/{client => core}/msg.py (100%) diff --git a/steam/client/__init__.py b/steam/core/__init__.py similarity index 100% rename from steam/client/__init__.py rename to steam/core/__init__.py diff --git a/steam/client/cm.py b/steam/core/cm.py similarity index 98% rename from steam/client/cm.py rename to steam/core/cm.py index 569cb52..37e395e 100644 --- a/steam/client/cm.py +++ b/steam/core/cm.py @@ -16,10 +16,10 @@ from Crypto.Random import random from steam.steamid import SteamID from steam.enums import EResult, EUniverse from steam.enums.emsg import EMsg -from steam.client import crypto -from steam.client.connection import TCPConnection -from steam.client.msg import is_proto, clear_proto_bit -from steam.client.msg import Msg, MsgProto +from steam.core import crypto +from steam.core.connection import TCPConnection +from steam.core.msg import is_proto, clear_proto_bit +from steam.core.msg import Msg, MsgProto server_list = [ ('162.254.196.41', '27020'), ('162.254.196.40', '27021'), diff --git a/steam/client/connection.py b/steam/core/connection.py similarity index 100% rename from steam/client/connection.py rename to steam/core/connection.py diff --git a/steam/client/crypto.py b/steam/core/crypto.py similarity index 100% rename from steam/client/crypto.py rename to steam/core/crypto.py diff --git a/steam/client/msg.py b/steam/core/msg.py similarity index 100% rename from steam/client/msg.py rename to steam/core/msg.py