From c791607c236b90333e35c3fffb9b5dc6612a3d8a Mon Sep 17 00:00:00 2001 From: Aearnus Date: Sat, 26 May 2018 02:00:40 -0700 Subject: [PATCH] Changed structure --- app/Main.hs | 2 +- src/{SixtyFiveOhTwo/Instruction.hs => DSL/SixtyFiveOhTwo.hs} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/{SixtyFiveOhTwo/Instruction.hs => DSL/SixtyFiveOhTwo.hs} (99%) 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