feat(add solutions reference for challenge 01-concurrent-aggregator)

This commit is contained in:
medunes
2026-01-22 01:14:03 +01:00
committed by Mohamed Younes
parent d44f1a86d9
commit ccd2ec1cce
14 changed files with 769 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
package profile
import (
"context"
)
type Profile struct {
Id int `json:"id"`
Name string `json:"name"`
}
type Service interface {
Get(ctx context.Context, id int) (*Profile, error)
}