moved and fixed some naming, started CLI interface
This commit is contained in:
parent
94d9542a3d
commit
29c17eb085
0
common/__init__.py
Normal file
0
common/__init__.py
Normal file
11
main.py
Normal file
11
main.py
Normal 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
2
sniff/udp.py
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
import socket
|
||||||
|
import os
|
Loading…
Reference in New Issue
Block a user