blob: f27a01bed812558e778976de8df7da6001255973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|