11 lines
224 B
Go
11 lines
224 B
Go
/*
|
|
* Please refer to the LICENSE file in the root directory of the project.
|
|
*/
|
|
|
|
package options
|
|
|
|
// Options 包含所有控制器可能需要的选项
|
|
type Options struct {
|
|
// 可以根据实际需求扩展更多选项
|
|
}
|