From 76d0cff639988ca506b1dc6e848841944c96b263 Mon Sep 17 00:00:00 2001 From: s Date: Sun, 16 Nov 2025 02:40:58 -0500 Subject: docs: add comprehensive api endpoints documentation and expand cli functionality --- internal/models/github.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 internal/models/github.go (limited to 'internal/models/github.go') diff --git a/internal/models/github.go b/internal/models/github.go new file mode 100644 index 0000000..722cbb8 --- /dev/null +++ b/internal/models/github.go @@ -0,0 +1,14 @@ +package models + +type GitHubLeadResult struct { + Repository string `json:"repository"` + Author string `json:"author"` + Email string `json:"email"` + Commit string `json:"commit"` + Date string `json:"date"` + Message string `json:"message"` +} + +type GitHubLeadsStreamResponse struct { + Lead GitHubLeadResult `json:"lead"` +} -- cgit v1.2.3