mirror of
https://github.com/status-im/nim-codex.git
synced 2025-02-08 00:44:53 +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)
|