17 lines
242 B
Python
17 lines
242 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
"""
|
||
|
Automatic invokes all initial scripts for project.
|
||
|
© 2018-2019 Cotes Chung
|
||
|
Licensed under MIT
|
||
|
"""
|
||
|
|
||
|
import update_posts_lastmod
|
||
|
import pages_generator
|
||
|
|
||
|
|
||
|
update_posts_lastmod
|
||
|
|
||
|
pages_generator
|