Initial code commit

This commit is contained in:
tiff 2024-06-25 22:28:21 -04:00
parent 08e66134ea
commit 2f78dac119
2 changed files with 12 additions and 0 deletions

2
src/smb_scanner.py Normal file
View file

@ -0,0 +1,2 @@

10
tests/tests.py Normal file
View file

@ -0,0 +1,10 @@
import unittest
class MyTestCase(unittest.TestCase):
def test_something(self):
self.assertEqual(True, False) # add assertion here
if __name__ == '__main__':
unittest.main()