1
This commit is contained in:
parent
278e009d72
commit
3da70d9a27
20
f7/udplog.py
Normal file
20
f7/udplog.py
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# -*- 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
|
Loading…
x
Reference in New Issue
Block a user