Total Complexity | 0 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | #!/usr/bin/env python3 |
||
2 | """ |
||
3 | Phishing Blocker Project - Analytics |
||
4 | |||
5 | (c)2020 Star Inc.(https://starinc.xyz). |
||
6 | === |
||
7 | This Source Code Form is subject to the terms of the Mozilla Public |
||
8 | License, v. 2.0. If a copy of the MPL was not distributed with this |
||
9 | file, You can obtain one at http://mozilla.org/MPL/2.0/. |
||
10 | === |
||
11 | """ |
||
12 | |||
13 | from libs import Analytics |
||
14 | |||
15 | if __name__ == "__main__": |
||
16 | config = "../config.ini" |
||
17 | handle = Analytics(config) |
||
18 |