16 lines
391 B
Go
16 lines
391 B
Go
// Package controller -----------------------------
|
|
// @file : container.go
|
|
// @author : JJXu
|
|
// @contact : wavingbear@163.com
|
|
// @time : 2024/7/2 上午11:43
|
|
// -------------------------------------------
|
|
package controller
|
|
|
|
type ContainerProvider struct {
|
|
}
|
|
|
|
func (c ContainerProvider) mustEmbedUnimplementedContainerServer() {
|
|
//TODO implement me
|
|
panic("implement me")
|
|
}
|