String converts the artifact type ID to a string
()
| 38 | |
| 39 | // String converts the artifact type ID to a string |
| 40 | func (t ArtifactType) String() string { |
| 41 | return artifactTypeNames[t] |
| 42 | } |
| 43 | |
| 44 | var artifactTypeValues = map[string]ArtifactType{ |
| 45 | DirArtifactTypeName: DirArtifactType, |
no outgoing calls