11 lines
159 B
Go
11 lines
159 B
Go
package grpc_server
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// UpdateLeaderboard 更新排行榜
|
|
func (s *Server) UpdateLeaderboard(ctx context.Context) error {
|
|
return nil
|
|
}
|