Skip to content

Commit

Permalink
Start the deployment logic
Browse files Browse the repository at this point in the history
  • Loading branch information
tchoutri committed May 27, 2024
1 parent 7fb7632 commit 30f3678
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Confer/Cmd/Deploy.hs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module Confer.Cmd.Deploy (deploy) where

import Control.Placeholder
import Data.Vector (Vector)
import Effectful
import Effectful.FileSystem (FileSystem)

import Confer.Effect.Symlink
import Confer.Config.Types
-- | Take a filtered and checked list of deployments.
deploy
:: ( FileSystem :> es
, Symlink :> es
, IOE :> es
)
=> (Vector Deployment)
-> Eff es ()
deploy deployments = todo

0 comments on commit 30f3678

Please sign in to comment.