11 lines
265 B
Python
11 lines
265 B
Python
'''
|
|
Date: 2025-04-24 16:32:55
|
|
LastEditors: 陈子健
|
|
LastEditTime: 2025-05-26 17:13:51
|
|
FilePath: /mac-lyric-vue/backend/config.py
|
|
'''
|
|
import os
|
|
|
|
APP_SUPPORT_DIR = os.path.expanduser('~/Library/Application Support/lyroc')
|
|
os.makedirs(APP_SUPPORT_DIR, exist_ok=True)
|