From e7e2b7edb782a9b529663aa25b417aa2daab3f47 Mon Sep 17 00:00:00 2001 From: Rob Rix Date: Fri, 31 Mar 2017 11:52:07 -0400 Subject: [PATCH] Stub in a Command module. --- semantic-diff.cabal | 1 + src/Command.hs | 1 + 2 files changed, 2 insertions(+) create mode 100644 src/Command.hs diff --git a/semantic-diff.cabal b/semantic-diff.cabal index 7eaa259d7..0d05928e2 100644 --- a/semantic-diff.cabal +++ b/semantic-diff.cabal @@ -17,6 +17,7 @@ library , Alignment , Arguments , Category + , Command , Command.Diff , Command.Parse , Data.Align.Generic diff --git a/src/Command.hs b/src/Command.hs new file mode 100644 index 000000000..04a7ce5b8 --- /dev/null +++ b/src/Command.hs @@ -0,0 +1 @@ +module Command where