Files
simapi-cj/src/configurations/SimApiStorageOptions.cj
T

20 lines
549 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* Copyright (c) 2025 SimcuTeam. All rights reserved.
* 移植自 C# 项目 SimApiE:\simcu\simapi-net),遵循 MIT 许可证。
* 对齐 C# 的 Configurations/SimApiStorageOptions.cs。
*/
package simcu::simapi.configurations
/**
* 存储相关配置(占位:仓颉版暂未实现 S3/MinIO 存储)。
*/
public class SimApiStorageOptions {
public var endpoint: String = ""
public var accessKey: String = ""
public var secretKey: String = ""
public var bucket: String = ""
public var serveUrl: String = ""
}