-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
31 lines (21 loc) · 833 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from huh.__main__ import main
""" Launch app """
if __name__ == '__main__':
main()
sys.exit(0)
"""
huh: huququ'llah helper
Copyright (C) 2024, Sama Rahimian. All rights reserved.
This Source Code Form is subject to the terms of the Mozilla
Public License, v. 2.0. If a copy of the MPL was not distributed
with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
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. In no world,
this or the next, shall the Author be held liable for any
damages, loss, damnation, or miscalculations, arising from the use
of this software.
"""