20 lines
437 B
Haskell
Raw Normal View History

module Common
( module R1CS
, module System.FilePath
, circuitSourceDir
)
where
--------------------------------------------------------------------------------
import System.FilePath
import R1CS
--------------------------------------------------------------------------------
circuitSourceDir :: FilePath
circuitSourceDir = "../circuit/"
--------------------------------------------------------------------------------