package repository import "context" type SocialNetworkRepository interface { CreateUserNode(ctx context.Context, uid string) error }