mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-02 13:33:10 +00:00
9 lines
256 B
Nim
9 lines
256 B
Nim
import ./backends
|
|
|
|
type BackendUtils* = ref object of RootObj
|
|
|
|
method initializeCircomBackend*(
|
|
self: BackendUtils, r1csFile: string, wasmFile: string, zKeyFile: string
|
|
): AnyBackend {.base, gcsafe.} =
|
|
CircomCompat.init(r1csFile, wasmFile, zKeyFile)
|