aboutsummaryrefslogtreecommitdiff
path: root/src/guff/tag-model.cr
blob: 5d758d1fd52ec0752f74971dff4b69bc8014c4d3 (plain)
1
2
3
4
5
6
7
8
9
10
module Guff
  class TagModel < Model
    SQL = TemplateCache.new({
    } of Symbol => String)

    def initialize(models : Models)
      super(models, SQL)
    end
  end
end