| 3511 | }; |
| 3512 | |
| 3513 | AwsInstance* GetAwsInstance() { |
| 3514 | static auto instance = std::make_unique<AwsInstance>(); |
| 3515 | return instance.get(); |
| 3516 | } |
| 3517 | |
| 3518 | Result<bool> EnsureAwsInstanceInitialized(const S3GlobalOptions& options) { |
| 3519 | return GetAwsInstance()->EnsureInitialized(options); |
no test coverage detected