feat(identity): created-content footer

This commit is contained in:
Mathias Bergqvist
2026-05-04 21:05:42 +02:00
parent 0b5daca198
commit 3613c36afb
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package identity
import "strings"
func ApplyFooter(body, caller string) string {
if caller == "" {
return body
}
footer := "\n\n---\n_Created via git-mcp on behalf of @" + caller + "_"
if strings.HasSuffix(body, footer) {
return body
}
return body + footer
}