Add projects
This commit is contained in:
parent
2d3a9ad623
commit
8b607dd700
1802 changed files with 503346 additions and 2 deletions
13
backend/internal/misc/claude_code_instructions.go
Normal file
13
backend/internal/misc/claude_code_instructions.go
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
// Package misc provides miscellaneous utility functions and embedded data for the CLI Proxy API.
|
||||
// This package contains general-purpose helpers and embedded resources that do not fit into
|
||||
// more specific domain packages. It includes embedded instructional text for Claude Code-related operations.
|
||||
package misc
|
||||
|
||||
import _ "embed"
|
||||
|
||||
// ClaudeCodeInstructions holds the content of the claude_code_instructions.txt file,
|
||||
// which is embedded into the application binary at compile time. This variable
|
||||
// contains specific instructions for Claude Code model interactions and code generation guidance.
|
||||
//
|
||||
//go:embed claude_code_instructions.txt
|
||||
var ClaudeCodeInstructions string
|
||||
Loading…
Reference in a new issue