diff --git a/steam/core/msg.py b/steam/core/msg/__init__.py similarity index 97% rename from steam/core/msg.py rename to steam/core/msg/__init__.py index 90ce482..09fc66a 100644 --- a/steam/core/msg.py +++ b/steam/core/msg/__init__.py @@ -1,7 +1,7 @@ import fnmatch -from steam.core.msg_unified import get_um -from steam.core.msg_structs import get_struct -from steam.core.msg_headers import MsgHdr, ExtendedMsgHdr, MsgHdrProtoBuf, GCMsgHdr, GCMsgHdrProto +from steam.core.msg.unified import get_um +from steam.core.msg.structs import get_struct +from steam.core.msg.headers import MsgHdr, ExtendedMsgHdr, MsgHdrProtoBuf, GCMsgHdr, GCMsgHdrProto from steam.enums.emsg import EMsg from steam.protobufs import steammessages_base_pb2 from steam.protobufs import steammessages_clientserver_pb2 diff --git a/steam/core/msg_headers.py b/steam/core/msg/headers.py similarity index 100% rename from steam/core/msg_headers.py rename to steam/core/msg/headers.py diff --git a/steam/core/msg_structs.py b/steam/core/msg/structs.py similarity index 100% rename from steam/core/msg_structs.py rename to steam/core/msg/structs.py diff --git a/steam/core/msg_unified.py b/steam/core/msg/unified.py similarity index 100% rename from steam/core/msg_unified.py rename to steam/core/msg/unified.py