File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 11namespace SqlStreamStore.FSharp.Postgres
22
3- open SqlStreamStore
4-
53type PostgresConfig =
64 { host: string
75 port: string
@@ -10,7 +8,7 @@ type PostgresConfig =
108 database: string }
119
1210module Postgres =
13- let createStore : PostgresConfig -> PostgresStreamStore =
11+ let createStore : PostgresConfig -> SqlStreamStore. PostgresStreamStore =
1412 fun config ->
1513
1614 let storeSettings : string =
@@ -22,7 +20,7 @@ module Postgres =
2220 config.password
2321 config.database
2422
25- new PostgresStreamStore( PostgresStreamStoreSettings( storeSettings))
23+ new SqlStreamStore. PostgresStreamStore( SqlStreamStore. PostgresStreamStoreSettings( storeSettings))
2624
27- let createSchema : PostgresStreamStore -> Async < unit > =
25+ let createSchema : SqlStreamStore. PostgresStreamStore -> Async < unit > =
2826 fun conn -> conn.CreateSchemaIfNotExists() |> Async.AwaitTask
You can’t perform that action at this time.
0 commit comments