| 17 | import path from 'path'; |
| 18 | |
| 19 | export interface GitCommit { |
| 20 | oid: string; |
| 21 | message: string; |
| 22 | displayName: string | null; |
| 23 | author: { name: string; email: string }; |
| 24 | timestamp: number; |
| 25 | } |
| 26 | |
| 27 | const GIT_AUTHOR = { name: 'Onlook', email: 'git@onlook.com' }; |
| 28 | const DISPLAY_NAME_NAMESPACE = 'onlook-display-name'; |
nothing calls this directly
no outgoing calls
no test coverage detected