mirror of
https://github.com/k4yt3x/wg-meshconf.git
synced 2025-02-18 02:00:50 +01:00
15 lines
281 B
Python
15 lines
281 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
Name: wg-meshconf __main__
|
||
|
Creator: K4YT3X
|
||
|
Date Created: May 21, 2021
|
||
|
Last Modified: May 21, 2021
|
||
|
"""
|
||
|
|
||
|
from .wg_meshconf import main
|
||
|
|
||
|
# launch the main function if it is not imported as a package
|
||
|
if __name__ == "__main__":
|
||
|
main()
|