mirror of
https://github.com/ArthurDanjou/artdanj-api.git
synced 2026-01-14 20:19:26 +01:00
6 lines
185 B
TypeScript
6 lines
185 B
TypeScript
import Translation from 'App/Models/Translation'
|
|
|
|
export async function getTranslation(code: string): Promise<Translation> {
|
|
return await Translation.firstOrNew({ code }, { code })
|
|
}
|