puyoskey/packages/backend/src/core/entities/SigninEntityService.ts
syuilo 792622aead
refactor: prefix Mi for all entities (#11719)
* wip

* wip

* wip

* wip

* Update RepositoryModule.ts

* wip

* wip

* wip

* Revert "wip"

This reverts commit c1c13b37d2aaf3c65bc148212da302b0eb7868bf.
2023-08-16 17:51:28 +09:00

24 lines
465 B
TypeScript

/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { Injectable } from '@nestjs/common';
import type { } from '@/models/entities/Blocking.js';
import type { MiSignin } from '@/models/entities/Signin.js';
import { bindThis } from '@/decorators.js';
@Injectable()
export class SigninEntityService {
constructor(
) {
}
@bindThis
public async pack(
src: MiSignin,
) {
return src;
}
}