16 lines
335 B
TypeScript
16 lines
335 B
TypeScript
|
import authModel from "../src/models/AuthModel";
|
||
|
import imageModel from "../src/models/ImageModel";
|
||
|
|
||
|
export default async function () {
|
||
|
await imageModel.create({
|
||
|
url: "https://example.com",
|
||
|
status: "consumed",
|
||
|
tags: ["2girls", "sleeping"],
|
||
|
});
|
||
|
|
||
|
await authModel.create({
|
||
|
app: "tester",
|
||
|
secret: "test",
|
||
|
});
|
||
|
}
|