(str string)
| 1861 | } |
| 1862 | |
| 1863 | func isUUID(str string) bool { |
| 1864 | _, err := uuid.Parse(str) |
| 1865 | return err == nil |
| 1866 | } |
| 1867 | |
| 1868 | func teamAccountIDFromRequest(c *gin.Context) string { |
| 1869 | for _, header := range []string{"ChatGPT-Account-ID", "Chatgpt-Account-Id", "Team-Account-ID", "X-ChatGPT-Account-ID"} { |
no outgoing calls
no test coverage detected