mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
import { backendLogger as logger } from '@/server/logger'
|
|
|
|
export class TestResolver {
|
|
async test(): Promise<String> {
|
|
logger.info(`test apiVersion=2_0`)
|
|
return 'test 2_0'
|
|
}
|
|
}
|