(ctx context.Context, s string, stat bool)
| 1444 | } |
| 1445 | |
| 1446 | func (c *Client) uploadString(ctx context.Context, s string, stat bool) (*PutResult, error) { |
| 1447 | uh := NewUploadHandleFromString(s) |
| 1448 | uh.SkipStat = !stat |
| 1449 | return c.Upload(ctx, uh) |
| 1450 | } |
| 1451 | |
| 1452 | func (c *Client) UploadNewPermanode(ctx context.Context) (*PutResult, error) { |
| 1453 | unsigned := schema.NewUnsignedPermanode() |
no test coverage detected