create initial POC script generating API
This commit is contained in:
parent
564b1c4e66
commit
e862de7e59
9 changed files with 210 additions and 82 deletions
|
|
@ -1,19 +1,14 @@
|
|||
{-# LANGUAGE TemplateHaskell #-}
|
||||
{- | Module : Scripts
|
||||
Maintainer : emi@haskell.fyi
|
||||
Description: Export scripts given configuration.
|
||||
|
||||
{- |
|
||||
Module : Scripts
|
||||
Maintainer : emi@haskell.fyi
|
||||
Description: Export scripts given configuration.
|
||||
|
||||
Export scripts given configuration.
|
||||
Export scripts given configuration.
|
||||
-}
|
||||
module Main (main) where
|
||||
module Scripts (main) where
|
||||
|
||||
import Options (parseOptions)
|
||||
import API (runServer)
|
||||
import Options (parseOptions)
|
||||
|
||||
main :: IO ()
|
||||
main = do
|
||||
options <- parseOptions
|
||||
|
||||
runServer options
|
||||
main =
|
||||
parseOptions >>= runServer
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue