wasp/stic/src/Lib.hs

9 lines
161 B
Haskell
Raw Normal View History

module Lib (
compile
) where
type CompileError = String
compile :: FilePath -> FilePath -> IO (Either CompileError ())
compile waspFile outDir = undefined