-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Split swarm libraries #1069
Split swarm libraries #1069
Changes from 11 commits
9667e15
ad568bd
a19995d
547a547
e5e2aef
6df71f2
fd7c1e8
50d8175
0ed6710
df459fe
c05f295
19809ff
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{-# LANGUAGE OverloadedStrings #-} | ||
|
||
-- | | ||
-- Module : Swarm.Game.Failure | ||
-- Module : Swarm.Game.Util.Failure | ||
-- Copyright : Ondřej Šebek | ||
-- Maintainer : ondras98@icloud.com | ||
-- | ||
|
@@ -11,7 +11,7 @@ | |
-- | ||
-- These failures are often not fatal and serve | ||
-- to create common infrastructure for logging. | ||
module Swarm.TUI.Model.Failure where | ||
module Swarm.Game.Util.Failure where | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @kostmo FYI I had to move the module back to the Game just to compile, but the change in #1116 is better (no It seems that I am also susceptible to making silly Splitting the libraries with Cabal has been a great learning experience for me, so I hope not to repeat my mistake from #982 where I put this module in TUI in the first place. 🤦 |
||
|
||
import Data.Char (toLower) | ||
import Data.Text (Text) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Speaking of CI, it looks like regenerating this file will get rid of GitHub warnings about deprecated actions. 🙂
Let's hope it will all work nicely. 🤞