Skip to content

Commit 163f271

Browse files
author
Jamil Maqdis Anton
committed
Remove imports
1 parent 5b88bb9 commit 163f271

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/Postgres.fs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
namespace SqlStreamStore.FSharp.Postgres
22

3-
open SqlStreamStore
4-
53
type PostgresConfig =
64
{ host: string
75
port: string
@@ -10,7 +8,7 @@ type PostgresConfig =
108
database: string }
119

1210
module 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

0 commit comments

Comments
 (0)