1
0
Fork 0

[golang] fixed golang api client design mistakes

This commit is contained in:
Julien Dessaux 2024-05-28 13:13:13 +02:00
parent d0f6c4343e
commit 0d00bf9fd2
Signed by: adyxax
GPG key ID: F92E51B86E07177E
9 changed files with 268 additions and 149 deletions

View file

@ -1,15 +1,5 @@
package api
type Request struct {
index int
priority int
method string
path string
payload any
resp chan *Response
}
type PriorityQueue []*Request
func (pq PriorityQueue) Len() int {