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