pkg/domain/core_domain/code_package.go

Summary

Maintainability
A
0 mins
Test Coverage
package core_domain

type CodePackage struct {
    Name      string
    ID        string
    CodeFiles []CodeContainer
    Extension interface{}
}

type GoCodePackage struct {
    Fields  []CodeField
}