mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-08 08:23:07 +00:00
14 lines
335 B
Nim
14 lines
335 B
Nim
import ./backends
|
|
import pkg/taskpools
|
|
|
|
type BackendUtils* = ref object of RootObj
|
|
|
|
method initializeCircomBackend*(
|
|
self: BackendUtils,
|
|
r1csFile: string,
|
|
wasmFile: string,
|
|
zKeyFile: string,
|
|
taskpool: Taskpool,
|
|
): AnyBackend {.base, gcsafe.} =
|
|
CircomCompat.init(r1csFile, wasmFile, zKeyFile, taskpool = taskpool)
|