in progress

This commit is contained in:
2025-12-02 18:54:48 +03:00
parent 1af2045a1b
commit d7bd28b759
8 changed files with 224 additions and 0 deletions

9
status.go Normal file
View File

@@ -0,0 +1,9 @@
package sigmasms
import "github.com/google/uuid"
func RequestStatus(id uuid.UUID, apiKey string) error {
url := "https://user.sigmasms.ru/api/sendings/" + id.String()
resp := make(map[string])
requestGet(url, apiKey, nil, )
}