From 3da70d9a27346608266def1611a58be31f6712e6 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Mon, 26 Aug 2019 14:48:45 +0800 Subject: [PATCH] 1 --- f7/udplog.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 f7/udplog.py diff --git a/f7/udplog.py b/f7/udplog.py new file mode 100644 index 0000000..086b67d --- /dev/null +++ b/f7/udplog.py @@ -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