(version: string)
| 1 | export function buildVersionNotice(version: string): string { |
| 2 | return [ |
| 3 | version, |
| 4 | 'Copyright (C) 2026 Inkeep, Inc.', |
| 5 | 'License GPL-3.0-or-later: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.', |
| 6 | 'This is free software: you are free to change and redistribute it.', |
| 7 | 'There is NO WARRANTY, to the extent permitted by law.', |
| 8 | ].join('\n'); |
| 9 | } |
no outgoing calls
no test coverage detected