| 3578 | }; |
| 3579 | |
| 3580 | AwsInstance* GetAwsInstance() { |
| 3581 | static auto instance = std::make_unique<AwsInstance>(); |
| 3582 | return instance.get(); |
| 3583 | } |
| 3584 | |
| 3585 | Result<bool> EnsureAwsInstanceInitialized(const S3GlobalOptions& options) { |
| 3586 | return GetAwsInstance()->EnsureInitialized(options); |
no test coverage detected