mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-10 08:05:14 +02:00
13 lines
278 B
TypeScript
13 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',
|
|
};
|