Move more base stuff into Types module

This commit is contained in:
2024-09-21 19:53:32 +02:00
parent de6495d750
commit e3868332be
3 changed files with 13 additions and 13 deletions

View File

@@ -2,14 +2,9 @@ module Sources where
import Types
import Data.ByteString (ByteString)
data Source a where
Data :: a -> Source a
class SourceState a where
stateOfSource :: a -> IO ByteString
instance SourceState FilePath where
stateOfSource = undefined