diff options
author | Paul Duncan <pabs@pablotron.org> | 2016-03-06 17:31:44 -0500 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2016-03-06 17:31:44 -0500 |
commit | 5771ff1b239f8452a718cebcc2cf8ae49a93b3a9 (patch) | |
tree | fba4a73d7021c24137dda3bbb360efc5f6067ab7 /src/guff/model.cr | |
parent | b1395163fa45ed788af4d2d003c1dd49846d86ee (diff) | |
download | old-guff-5771ff1b239f8452a718cebcc2cf8ae49a93b3a9.tar.bz2 old-guff-5771ff1b239f8452a718cebcc2cf8ae49a93b3a9.zip |
add stub post and tag models
Diffstat (limited to 'src/guff/model.cr')
-rw-r--r-- | src/guff/model.cr | 9 |
1 files changed, 0 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 |