* * image build in cluster now use InitContainer to do the image building inside pods, which invoke docker again node's docker daemon * create a docker build image tool fx/contrib/docker_packer * clean up no need env in GitHub action workflow * bump version
8 lines
143 B
Go
8 lines
143 B
Go
package types
|
|
|
|
// Func defines a function information
|
|
type Func struct {
|
|
Language string `json:"language"`
|
|
Source string `json:"source"`
|
|
}
|