@adonisjs/lucid
Version:
SQL ORM built on top of Active Record pattern
17 lines (16 loc) • 347 B
JavaScript
/*
* @adonisjs/lucid
*
* (c) Harminder Virk <virk@adonisjs.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
export class BaseSeeder {
client;
static environment;
constructor(client) {
this.client = client;
}
async run() { }
}