diff options
Diffstat (limited to 'ansible/netbox/main.py')
-rw-r--r-- | ansible/netbox/main.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ansible/netbox/main.py b/ansible/netbox/main.py new file mode 100644 index 0000000..f77f4f0 --- /dev/null +++ b/ansible/netbox/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from netbox!") + + +if __name__ == "__main__": + main() |