Documentation ¶ Index ¶ type Context type Hook Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Context ¶ type Context struct { Context context.Context // request context passed when query executed Location *ast.Location // location of print call } Context provides the Hook implementation context about the print() call. type Hook ¶ type Hook interface { Print(Context, string) error } Hook defines the interface that callers can implement to receive print statement outputs. If the hook returns an error, it will be surfaced if strict builtin error checking is enabled (otherwise, it will not halt execution.) Source Files ¶ View all Source files print.go Click to show internal directories. Click to hide internal directories.