mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 01:21:15 +01:00
7 lines
165 B
Python
7 lines
165 B
Python
|
import os
|
||
|
import shutil
|
||
|
|
||
|
def copy_fonts(config, **kwargs):
|
||
|
site_dir = config['site_dir']
|
||
|
shutil.copytree('docs/static/fonts', os.path.join(site_dir, 'get'))
|