From 56ec802b7bb5452829270cec46132ec05829e37b Mon Sep 17 00:00:00 2001
From: TinWoodman92 <chrhodgden@gmail.com>
Date: Sat, 17 Jun 2023 20:50:21 -0500
Subject: Update __init__.py

added comments for future multi-module feature.
---
 dialoguer/__init__.py | 2 ++
 1 file changed, 2 insertions(+)

(limited to 'dialoguer/__init__.py')

diff --git a/dialoguer/__init__.py b/dialoguer/__init__.py
index 6801d5e..6ef61c9 100644
--- a/dialoguer/__init__.py
+++ b/dialoguer/__init__.py
@@ -13,6 +13,8 @@ FORMAT = 'utf-8'
 server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
 server.bind(ADDR)
 
+# could there be a defined sub-class that has all the sockets connection functions?
+# then the dialogue class launches and connects and loops
 class Dialogue:
 	def __init__(self, file_name):
 		self.file_name = file_name
-- 
cgit v1.2.3