21 lines
294 B
Python
21 lines
294 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
class Udplog:
|
|
|
|
_instance = None
|
|
|
|
@classmethod
|
|
def instance(cls):
|
|
if not _instance:
|
|
_instance = UdpLog()
|
|
return _instance
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def init(self):
|
|
pass
|
|
|
|
def unInit(self):
|
|
pass
|