schema.lua 179 B

12345678910
  1. local schema = {}
  2. schema.__index = schema
  3. function schema.create(config)
  4. assert(type(config.query) == 'table', 'must provide query object')
  5. return config
  6. end
  7. return schema