mirror of
https://github.com/ChronosX88/medved.git
synced 2025-02-16 21:16:27 +00:00
14 lines
188 B
Python
14 lines
188 B
Python
from lib import Loadable, Logger
|
|
|
|
# dunno
|
|
|
|
class Type(Loadable):
|
|
def __init__(self):
|
|
self.data = {}
|
|
|
|
class Host(Type):
|
|
def __init__(self):
|
|
self.data = {
|
|
'ip': ''
|
|
}
|