mirror of
https://github.com/koush/scrypted.git
synced 2026-03-01 08:42:57 +00:00
9 lines
161 B
Python
9 lines
161 B
Python
from coreml import CoreMLPlugin
|
|
import predict
|
|
|
|
def create_scrypted_plugin():
|
|
return CoreMLPlugin()
|
|
|
|
async def fork():
|
|
return predict.Fork(CoreMLPlugin)
|