mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-16 02:32:16 +03:00
13 lines
238 B
Python
13 lines
238 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# Author: Volkan Şahin <volkansah.in> <bm.volkansahin@gmail.com>
|
||
|
|
||
|
|
||
|
class InitMode(object):
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
@property
|
||
|
def obj_name(self):
|
||
|
return "INIT_MODE"
|