feat: implement get access tokens api

This commit is contained in:
Steven
2023-08-06 20:25:23 +08:00
parent 994a90c8fb
commit ad988575b3
13 changed files with 612 additions and 140 deletions

View File

@ -2,8 +2,6 @@ syntax = "proto3";
package slash.store;
import "google/protobuf/timestamp.proto";
option go_package = "gen/store";
message UserSetting {
@ -26,8 +24,6 @@ message AccessTokensUserSetting {
message AccessToken {
string access_token = 1;
string description = 2;
google.protobuf.Timestamp created_time = 3;
google.protobuf.Timestamp expires_time = 4;
}
repeated AccessToken access_tokens = 1;
}