mirror of
https://github.com/koush/scrypted.git
synced 2026-08-11 23:50:47 +01:00
9 lines
163 B
Python
9 lines
163 B
Python
from ov import OpenVINOPlugin
|
|
import predict
|
|
|
|
def create_scrypted_plugin():
|
|
return OpenVINOPlugin()
|
|
|
|
async def fork():
|
|
return predict.Fork(OpenVINOPlugin)
|