mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +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
|
|
}
|