3e8e74f276
Make integrating with go tools easier by putting the blueprint package files in the top level directory of the git project instead of in a subdirectory called blueprint. Change-Id: I35c144c5fe7ddf34e478d0c47c50b2f6c92c2a03
13 lines
300 B
Go
13 lines
300 B
Go
package blueprint
|
|
|
|
func packageNamespacePrefix(packageName string) string {
|
|
return "g." + packageName + "."
|
|
}
|
|
|
|
func moduleNamespacePrefix(moduleName string) string {
|
|
return "m." + moduleName + "."
|
|
}
|
|
|
|
func singletonNamespacePrefix(singletonName string) string {
|
|
return "s." + singletonName + "."
|
|
}
|