mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-07-17 09:26:20 -05:00
8 lines
138 B
TypeScript
8 lines
138 B
TypeScript
import * as Objection from "objection";
|
|
|
|
class Weapon extends Objection.Model {
|
|
static tableName = "weapons";
|
|
}
|
|
|
|
export default Weapon;
|