Transfer code from API repo to own repo

This commit is contained in:
2021-03-09 18:11:23 +01:00
parent 0e5d737209
commit 5c74f774ff
12 changed files with 473 additions and 1 deletions

8
pixelapi/list.go Normal file
View File

@@ -0,0 +1,8 @@
package pixelapi
import "fornaxian.tech/pixeldrain_server/api/restapi/apitype"
// GetListID get a List from the pixeldrain API
func (p *PixelAPI) GetListID(id string) (resp apitype.ListInfo, err error) {
return resp, p.jsonRequest("GET", "list/"+id, &resp)
}