(requestedPath, chatPath string)
| 39 | } |
| 40 | |
| 41 | func sharedPlanPathMessage(requestedPath, chatPath string) string { |
| 42 | return fmt.Sprintf( |
| 43 | "the plan path %s is no longer supported at the home root; use the chat-specific plan path: %s", |
| 44 | requestedPath, |
| 45 | chatPath, |
| 46 | ) |
| 47 | } |
| 48 | |
| 49 | func symlinkedPlanPathMessage(planPath, resolvedPath string) string { |
| 50 | return fmt.Sprintf( |
no outgoing calls