mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-25 08:48:08 +02:00
14 lines
278 B
TypeScript
14 lines
278 B
TypeScript
|
|
export interface GitAuthor {
|
||
|
|
name: string;
|
||
|
|
email: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface GitAuthorResolverPort {
|
||
|
|
resolve(userId: string | null | undefined): Promise<GitAuthor>;
|
||
|
|
}
|
||
|
|
|
||
|
|
export const SYSTEM_GIT_AUTHOR: GitAuthor = {
|
||
|
|
name: 'System User',
|
||
|
|
email: 'system@example.com',
|
||
|
|
};
|