6 lines
106 B
Python
6 lines
106 B
Python
from sanic import Sanic
|
|
from aiocache import SimpleMemoryCache
|
|
|
|
app = Sanic()
|
|
cache = SimpleMemoryCache()
|