mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-acgnshow.git
synced 2024-11-13 10:57:47 +08:00
5 lines
163 B
Python
5 lines
163 B
Python
|
from .config import BGIMAGE_PATH
|
||
|
import random
|
||
|
def choose_random_bgimage():
|
||
|
randomfile = random.choice(list(BGIMAGE_PATH.iterdir()))
|
||
|
return str(randomfile)
|