| 40 | } |
| 41 | |
| 42 | type Leaser struct { |
| 43 | s3 S3API |
| 44 | logger *slog.Logger |
| 45 | |
| 46 | Bucket string |
| 47 | Path string |
| 48 | TTL time.Duration |
| 49 | Owner string |
| 50 | } |
| 51 | |
| 52 | func NewLeaser() *Leaser { |
| 53 | owner, _ := os.Hostname() |
nothing calls this directly
no outgoing calls
no test coverage detected