8 lines
109 B
Python
8 lines
109 B
Python
# -*- coding: utf-8 -*-
|
|
# import serial
|
|
|
|
from . import BaseSource
|
|
|
|
|
|
class SerialSource(BaseSource):
|
|
pass
|