12 lines
276 B
Python
12 lines
276 B
Python
from atst.handler import BaseHandler
|
|
|
|
|
|
class Dev(BaseHandler):
|
|
def initialize(self, action, sessions):
|
|
self.action = action
|
|
self.sessions = sessions
|
|
|
|
def get(self):
|
|
user = {"id": "164497f6-c1ea-4f42-a5ef-101da278c012"}
|
|
self.login(user)
|