mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 13:03:09 +02:00
145389768d
* pub-relay * relay actorをApplicationにする * Disable koa-compress * Homeはリレーに送らない * Disable debug * UI * cleanupなど
6 lines
184 B
TypeScript
6 lines
184 B
TypeScript
import { EntityRepository, Repository } from 'typeorm';
|
|
import { Relay } from '../entities/relay';
|
|
|
|
@EntityRepository(Relay)
|
|
export class RelayRepository extends Repository<Relay> {
|
|
}
|