Skip to content

Commit

Permalink
Update module headers
Browse files Browse the repository at this point in the history
Added missing headers, documentation or updated copyright years
  • Loading branch information
agentultra committed May 2, 2021
1 parent 89ff845 commit 9f62cef
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Database/PostgreSQL/Replicant.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{-|
Module : Database.PostgreSQL.Replicant
Description : A PostgreSQL streaming replication library
Copyright : (c) James King, 2021
Copyright : (c) James King, 2020, 2021
License : BSD3
Maintainer : [email protected]
Stability : experimental
Expand Down
2 changes: 1 addition & 1 deletion src/Database/PostgreSQL/Replicant/Message.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-|
Module : Database.PostgreSQL.Replicant.Message
Description : Streaming replication message types
Copyright : (c) James King, 2021
Copyright : (c) James King, 2020, 2021
License : BSD3
Maintainer : [email protected]
Stability : experimental
Expand Down
2 changes: 1 addition & 1 deletion src/Database/PostgreSQL/Replicant/Protocol.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-|
Module : Database.PostgreSQL.Replicant.Protocol
Description : Streaming replication protocol
Copyright : (c) James King, 2021
Copyright : (c) James King, 2020, 2021
License : BSD3
Maintainer : [email protected]
Stability : experimental
Expand Down
11 changes: 11 additions & 0 deletions src/Database/PostgreSQL/Replicant/Queue.hs
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
{-|
Module : Database.PostgreSQL.Replicant.Queue
Description : Bounded and unbounded FIFO queues
Copyright : (c) James King, 2020, 2021
License : BSD3
Maintainer : [email protected]
Stability : experimental
Portability : POSIX
Shared FIFO queues
-}
module Database.PostgreSQL.Replicant.Queue where

import Control.Concurrent.MVar
Expand Down
12 changes: 12 additions & 0 deletions src/Database/PostgreSQL/Replicant/ReplicationSlot.hs
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
{-|
Module : Database.PostgreSQL.Replicant.ReplicationSlot
Description : Replication slot query commands
Copyright : (c) James King, 2020, 2021
License : BSD3
Maintainer : [email protected]
Stability : experimental
Portability : POSIX
This module contains the PostgreSQL queries, types, and functions for
working with querying, creating, and working with replication slots.
-}
module Database.PostgreSQL.Replicant.ReplicationSlot where

import Control.Exception
Expand Down
2 changes: 1 addition & 1 deletion src/Database/PostgreSQL/Replicant/State.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-|
Module : Database.PostgreSQL.Replicant.State
Description : Internal replication stream state
Copyright : (c) James King, 2021
Copyright : (c) James King, 2020, 2021
License : BSD3
Maintainer : [email protected]
Stability : experimental
Expand Down
2 changes: 1 addition & 1 deletion src/Database/PostgreSQL/Replicant/Types/Lsn.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{-|
Module : Database.PostgreSQL.Replicant.Types.Lsn
Description : Types and parsers for LSNs
Copyright : (c) James King, 2021
Copyright : (c) James King, 2020, 2021
License : BSD3
Maintainer : [email protected]
Stability : experimental
Expand Down

0 comments on commit 9f62cef

Please sign in to comment.