0
0
Fork 0

ディレクトリ再編

This commit is contained in:
xeltica 2021-09-04 11:00:38 +09:00
parent cb924ff92b
commit 85d471efbb
45 changed files with 204 additions and 41 deletions

View file

@ -1,7 +1,7 @@
import { Users } from '../models';
import { updateRating } from '../functions/update-rating';
import { api } from '../services/misskey';
import { MiUser } from '../functions/update-score';
import { Users } from '../backend/models';
import { updateRating } from '../backend/functions/update-rating';
import { api } from '../backend/services/misskey';
import { MiUser } from '../backend/functions/update-score';
export default async () => {
const users = await Users.find();
@ -14,4 +14,4 @@ export default async () => {
}
await updateRating(u, miUser);
}
};
};