-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMain.hs
More file actions
37 lines (18 loc) · 682 Bytes
/
Main.hs
File metadata and controls
37 lines (18 loc) · 682 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{-# LANGUAGE TemplateHaskell #-}
import HFlags
import System.Environment
import System.Exit
import Database.SQL.SQLConverter.Types
import Database.SQL.SQLConverter.Functions
import Database.SQL.SQLConverter.IOFunctions
import TestStuff
defineFlag "o:output" "" "Resulting SQL"
defineFlag "s1:structure_from" "" "File with structure of databases"
defineFlag "s2:structure_to" "" "File with structure of databases"
defineFlag "c:corrs" "" "File with corresponds"
$(return [])
main :: IO ()
main = do
_ <- $initHFlags "Some programm. In this stage not worthy to document"
putStrLn "sdf"
data Table = Table [Field]