mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 15:52:22 +03:00
13 lines
267 B
Python
13 lines
267 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# Author: Volkan Şahin <volkansah.in> <bm.volkansahin@gmail.com>
|
||
|
|
||
|
|
||
|
class SafeMode(object):
|
||
|
|
||
|
def __init__(self,username):
|
||
|
self.username = username
|
||
|
|
||
|
@property
|
||
|
def obj_name(self):
|
||
|
return "SAFE_MODE"
|