mirror of
https://github.com/koush/scrypted.git
synced 2026-03-20 16:40:24 +00:00
9 lines
151 B
Python
9 lines
151 B
Python
from nc import NCNNPlugin
|
|
import predict
|
|
|
|
def create_scrypted_plugin():
|
|
return NCNNPlugin()
|
|
|
|
async def fork():
|
|
return predict.Fork(NCNNPlugin)
|