Skip to content

Commit

Permalink
refactor: renaming lib module to paxos
Browse files Browse the repository at this point in the history
  • Loading branch information
BRonen committed Feb 22, 2024
1 parent c969b17 commit c149b1b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Main.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Main (main) where

import Options.Generic (getRecord)
import App (app)
import Paxos (app)

getNodeId :: IO Int
getNodeId = getRecord "Paxos-hs"
Expand Down
2 changes: 1 addition & 1 deletion paxos-hs.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ source-repository head

library
exposed-modules:
App
Paxos
other-modules:
Paths_paxos_hs
autogen-modules:
Expand Down
2 changes: 1 addition & 1 deletion src/App.hs → src/Paxos.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module App
module Paxos
( app
) where

Expand Down

0 comments on commit c149b1b

Please sign in to comment.