mirror of
https://github.com/router-for-me/CLIProxyAPI.git
synced 2026-02-18 04:10:51 +08:00
13 lines
310 B
Go
13 lines
310 B
Go
package empty
|
|
|
|
type EmptyStorage struct {
|
|
// Type indicates the type (gemini, chatgpt, claude) of token storage.
|
|
Type string `json:"type"`
|
|
}
|
|
|
|
// SaveTokenToFile serializes the token storage to a JSON file.
|
|
func (ts *EmptyStorage) SaveTokenToFile(authFilePath string) error {
|
|
ts.Type = "empty"
|
|
return nil
|
|
}
|