github.com/gramework/gramework@v1.8.1-0.20231027140105-82555c9057f5/infrastructure/const.go (about) 1 package infrastructure 2 3 const ( 4 // HTTP service type 5 HTTP ServiceType = "http" 6 // HTTPS service type 7 HTTPS ServiceType = "https" 8 // TCP service type 9 TCP ServiceType = "tcp" 10 // UDP service type 11 UDP ServiceType = "udp" 12 // Custom protocol service type 13 Custom ServiceType = "custom" 14 )