2021-07-21 15:36:11 +05:30
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2021-07-25 14:06:17 +05:30
|
|
|
# Copyright (C) 2021 The naxalnet Authors
|
|
|
|
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2021-08-13 10:35:13 +05:30
|
|
|
"""
|
|
|
|
naxalnet
|
|
|
|
========
|
|
|
|
|
|
|
|
If called as python -m naxalnet, this file makes naxalnet run like
|
|
|
|
it was called from the commandline.
|
|
|
|
"""
|
2021-07-25 14:06:17 +05:30
|
|
|
|
2021-07-21 15:36:11 +05:30
|
|
|
from naxalnet.scripts import here_be_dragons
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
here_be_dragons()
|