18 lines
264 B
Go
18 lines
264 B
Go
|
package v1
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/rs/zerolog/log"
|
||
|
)
|
||
|
|
||
|
type Server struct {
|
||
|
UnimplementedIdentifierServer
|
||
|
}
|
||
|
|
||
|
func (s Server) Identify(ctx context.Context, r *IdentifyRequest) (*Tracks, error) {
|
||
|
log.Info().Msg("Tracks und so")
|
||
|
|
||
|
return &Tracks{}, nil
|
||
|
}
|