moved and fixed some naming, started CLI interface

This commit is contained in:
hornet 2023-03-21 18:02:38 -04:00
parent 94d9542a3d
commit 29c17eb085
8 changed files with 13 additions and 0 deletions

0
common/__init__.py Normal file
View File

11
main.py Normal file
View File

@ -0,0 +1,11 @@
class MenuState:
def __init__(self, title, desc, parent):
self.title = title
self.description = desc
self.parent = parent
self.subs = []
def add_submenu(self, menu):
self.subs.append(menu)

2
sniff/udp.py Normal file
View File

@ -0,0 +1,2 @@
import socket
import os