mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-acgnshow.git
synced 2025-06-04 19:25:24 +00:00
6 lines
193 B
Python
6 lines
193 B
Python
from .config import BGIMAGE_PATH
|
|
import random
|
|
def choose_random_bgimage():
|
|
randomfile = random.choice(list(BGIMAGE_PATH.iterdir()))
|
|
randomurl = randomfile.as_uri()
|
|
return randomurl |