wizard-wipeout/src-client/Client/Types.hs

15 lines
260 B
Haskell
Raw Normal View History

module Client.Types where
import Options.Applicative as O
newtype Options = Options
{ optSockLoc :: FilePath
}
options :: O.Parser Options
options = Options
<$> argument str
( metavar "FILEPATH"
<> help "Location of the server's socket"
)