diff options
Diffstat (limited to 'src/guff')
| -rw-r--r-- | src/guff/model.cr | 9 | ||||
| -rw-r--r-- | src/guff/post-model.cr | 4 | ||||
| -rw-r--r-- | src/guff/tag-model.cr | 4 | 
3 files changed, 8 insertions, 9 deletions
diff --git a/src/guff/model.cr b/src/guff/model.cr index ef1b457..823d33b 100644 --- a/src/guff/model.cr +++ b/src/guff/model.cr @@ -1,15 +1,6 @@ -require "./database" -require "./database-updater" -  module Guff    class Model      def initialize(@models : Models)      end    end - -  class PostModel < Model -  end - -  class TagModel < Model -  end  end diff --git a/src/guff/post-model.cr b/src/guff/post-model.cr new file mode 100644 index 0000000..20ccf22 --- /dev/null +++ b/src/guff/post-model.cr @@ -0,0 +1,4 @@ +module Guff +  class PostModel < Model +  end +end diff --git a/src/guff/tag-model.cr b/src/guff/tag-model.cr new file mode 100644 index 0000000..311a4b5 --- /dev/null +++ b/src/guff/tag-model.cr @@ -0,0 +1,4 @@ +module Guff +  class TagModel < Model +  end +end  | 
