14 lines
315 B
Go
14 lines
315 B
Go
package graph
|
|
|
|
import (
|
|
"context"
|
|
"tailly_back_v2/internal/domain"
|
|
)
|
|
|
|
type subscriptionResolver struct{ *Resolver }
|
|
|
|
// MessageReceived is the resolver for the messageReceived field.
|
|
func (r *subscriptionResolver) MessageReceived(ctx context.Context) (<-chan *domain.Message, error) {
|
|
panic("not implemented")
|
|
}
|