mirror of
https://github.com/logos-storage/circom-goldilocks.git
synced 2026-01-02 13:03:10 +00:00
20 lines
437 B
Haskell
20 lines
437 B
Haskell
|
|
module Common
|
|
( module R1CS
|
|
, module System.FilePath
|
|
, circuitSourceDir
|
|
)
|
|
where
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
import System.FilePath
|
|
import R1CS
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
circuitSourceDir :: FilePath
|
|
circuitSourceDir = "../circuit/"
|
|
|
|
--------------------------------------------------------------------------------
|