initial commit

This commit is contained in:
2024-07-17 18:33:08 -05:00
parent f8ffb73250
commit 8043290e98
17 changed files with 2811 additions and 0 deletions

28
internal/opps/opps.go Normal file
View File

@@ -0,0 +1,28 @@
package opps
type Opportunity struct {
Title string `json:"Title"`
Status string `json:"Status"`
SolutionConsultants struct {
Results []int `json:"results"`
} `json:"SolutionConsultantId"`
}
type Result struct {
Data struct {
Opportunities []Opportunity `json:"results"`
Next string `json:"__next"`
} `json:"d"`
}
type Counter struct {
Inactive int
Won int
Open int
Closed int
}
type SolutionConsultant struct {
ID int
Name string
}