mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-09 17:30:25 +08:00
13 lines
245 B
Go
13 lines
245 B
Go
|
|
package dto
|
||
|
|
|
||
|
|
import (
|
||
|
|
"mayfly-go/internal/es/domain/entity"
|
||
|
|
tagentity "mayfly-go/internal/tag/domain/entity"
|
||
|
|
)
|
||
|
|
|
||
|
|
type SaveEsInstance struct {
|
||
|
|
EsInstance *entity.EsInstance
|
||
|
|
AuthCerts []*tagentity.ResourceAuthCert
|
||
|
|
TagCodePaths []string
|
||
|
|
}
|