nim-codex/codex/slots/proofs/backendutils.nim
Adam Uhlíř e5df8c50d3
style: nph formatting (#1067)
* style: nph setup

* chore: formates codex/ and tests/ folder with nph 0.6.1
2025-01-21 20:54:46 +00:00

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)