diff options
Diffstat (limited to 'docs/docs.go')
| -rw-r--r-- | docs/docs.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/docs.go b/docs/docs.go new file mode 100644 index 000000000..f27a01bed --- /dev/null +++ b/docs/docs.go @@ -0,0 +1,15 @@ +// Copyright 2026 syzkaller project authors. All rights reserved. +// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +// Package docs exports some of the docs for LLM agents in pkg/aflow. +package docs + +import ( + _ "embed" +) + +//go:embed program_syntax.md +var ProgramSyntax string + +//go:embed syscall_descriptions_syntax.md +var SyscallDescriptionsSyntax string |
