diff --git a/app/Main.hs b/app/Main.hs index dfea84b..5725df6 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -1,6 +1,6 @@ module Main where -import SixtyFiveOhTwo.Instruction +import DSL.SixtyFiveOhTwo import Control.Monad.State import qualified Data.ByteString as B import Data.Int diff --git a/src/SixtyFiveOhTwo/Instruction.hs b/src/DSL/SixtyFiveOhTwo.hs similarity index 99% rename from src/SixtyFiveOhTwo/Instruction.hs rename to src/DSL/SixtyFiveOhTwo.hs index 3c6f8ba..b6d37da 100644 --- a/src/SixtyFiveOhTwo/Instruction.hs +++ b/src/DSL/SixtyFiveOhTwo.hs @@ -1,6 +1,6 @@ {-# LANGUAGE TemplateHaskell #-} -module SixtyFiveOhTwo.Instruction where +module DSL.SixtyFiveOhTwo where import Control.Monad.State import qualified Data.ByteString as B