Skip to content

Commit 8f43ffd

Browse files
authored
First commit
1 parent 5f361ed commit 8f43ffd

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

lib/discovery.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
include socket
2+
3+
class Discover:
4+
def __init__(self):
5+
print('Init')
6+
pass
7+
8+
def run():
9+
print('Running')
10+
pass
11+
12+
13+
if __name__ == __main__:
14+
discover = Discover()
15+
discover.run()

0 commit comments

Comments
 (0)