16 lines
242 B
Python
Executable file
16 lines
242 B
Python
Executable file
#!/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
|