summaryrefslogblamecommitdiffstats
path: root/nfsw/scenes.py
blob: e2c3b004ceb99061381dae681dad4ac24b13429f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                           
from nfsw.redis import redis as r, key as k

def get_scene(name):
    scenes = {
        'sexshop': sexshop
    }

    return scenes.get(name, None)


def current_scene():
    return get_scene(
        r().get(k('scene')).decode()
    )


def sexshop(q):
    return q  + ' you are fucked'