mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-06-08 00:27:58 +00:00
17 lines
242 B
Python
Executable File
17 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
|