10 lines
133 B
Python
10 lines
133 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
'''
|
||
|
Don`t move this file!
|
||
|
'''
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
from parser import docs_parse
|
||
|
docs_parse()
|