8 lines
166 B
Python
8 lines
166 B
Python
from flask_restful import Api, Resource, reqparse, abort
|
|
import vars
|
|
|
|
class UserLogin(Resource):
|
|
def get(self):
|
|
print(vars.db['livebeat'])
|
|
return
|