fpco-api 1.0.2 → 1.0.3
raw patch · 2 files changed
+3/−2 lines, 2 files
Files
- fpco-api.cabal +1/−1
- src/library/FP/Server/Types.hs +2/−1
fpco-api.cabal view
@@ -1,5 +1,5 @@ name: fpco-api-version: 1.0.2+version: 1.0.3 synopsis: Simple interface to the FP Complete IDE API. description: A server and library for communicating with the FP Complete IDE API. homepage: https://www.fpcomplete.com/page/api
src/library/FP/Server/Types.hs view
@@ -12,6 +12,7 @@ import FP.API.Run import FP.API.Types+import FP.Server.Config import Control.Concurrent (MVar) import Control.Monad.Logger@@ -60,7 +61,7 @@ } deriving (Show) instance Default Config where- def = Config "" "https://fpcomplete.com" 1990 "fpco-api" True False+ def = Config "" defaultUrl defaultPort "fpco-api" True False -- | Message from the client. data Msg = MsgSaveModule FayProjectId FilePath FilePath