12 lines
296 B
Python
12 lines
296 B
Python
|
|
# -*- coding: utf-8 -*-
|
||
|
|
from alg_airport_ffmpeg.service.PushStreamService import PushStreamService
|
||
|
|
|
||
|
|
"""
|
||
|
|
airport主程序入口
|
||
|
|
"""
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
print("(♥◠‿◠)ノ゙ AIRPORT【推流服务】开始启动 ლ(´ڡ`ლ)゙")
|
||
|
|
PushStreamService().start_service()
|