MCPcopy Index your code
hub / github.com/chainreactors/EvilProxy / RawJSON

Method RawJSON

internal/pluginhost/auth_provider.go:427–436  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

425}
426
427func (s *pluginTokenStorage) RawJSON() []byte {
428 if s == nil {
429 return nil
430 }
431 payload, errPayload := mergedStorageJSON(s.rawJSON, s.meta, s.provider)
432 if errPayload != nil {
433 return nil
434 }
435 return payload
436}
437
438func (s *pluginTokenStorage) SaveTokenToFile(path string) error {
439 if s == nil {

Calls 1

mergedStorageJSONFunction · 0.85