mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 07:42:16 +03:00
22 lines
486 B
Python
22 lines
486 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from base.plugin.abstract_plugin import AbstractPlugin
|
||
|
|
||
|
|
||
|
class Login(AbstractPlugin):
|
||
|
def __init__(self, context):
|
||
|
super(Login, self).__init__()
|
||
|
self.context = context
|
||
|
self.username = str(context.get_username())
|
||
|
self.logger = self.get_logger()
|
||
|
|
||
|
def handle_mode(self):
|
||
|
# TODO Do what do you want to do!
|
||
|
pass
|
||
|
|
||
|
|
||
|
def handle_mode(context):
|
||
|
login = Login(context)
|
||
|
login.handle_mode()
|