blob: 00275aff8bd545c02c7031c334ff39b5233b69b1 (
plain)
1
2
3
4
5
6
7
8
9
|
package main
import "github.com/bdw/ship/internal/state"
// validateName checks that an app/project name is safe for use in shell
// commands, file paths, systemd units, and DNS labels.
func validateName(name string) error {
return state.ValidateName(name)
}
|