#! /usr/bin/env python3
# -*- coding: UTF-8 -*-
##############################################
# Home	: https://www.netkiller.cn
# Author: Neo <netkiller@msn.com>
##############################################
import os,sys

from  netkiller.network.wireguard import Wireguard

def main():
    try:
        run = Wireguard()
        run.main()
    except KeyboardInterrupt as e:
        print(e)

if __name__ == "__main__":
    main()