Start implementing the tokens controller

Signed-off-by: Nikolai Rodionov <iam@allanger.xyz>
This commit is contained in:
2026-05-12 16:42:24 +02:00
parent 7f6260669a
commit 35c6689a2c
2 changed files with 62 additions and 0 deletions

9
api/v1/tokens.go Normal file
View File

@@ -0,0 +1,9 @@
package v1
import (
tokens "gitea.badhouseplants.net/softplayer/softplayer-go-proto/pkg/tokens/v1"
)
type TokensServer struct {
tokens.UnimplementedTokensServiceServer
}