mirror of
https://github.com/towalink/wgfrontend.git
synced 2025-07-03 03:36:56 +00:00
12 lines
170 B
Python
12 lines
170 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""wgfrontend.py: Just a wrapper to the module."""
|
|
|
|
|
|
import wgfrontend
|
|
|
|
|
|
if __name__ == '__main__':
|
|
wgfrontend.main()
|