Files
vercel/packages/go/go.mod
Vedant 9712640fe3 [go] Add support for Go 1.20 (#9367)
Co-authored-by: Chris Barber <chris.barber@vercel.com>
2023-03-16 14:11:49 -05:00

21 lines
571 B
Modula-2

module main
go 1.20
// This file exists to allow debugging of Go files within this package,
// such as `util/analyze.go`.
// You can do this by creating a VS Code Launcher Configuration
// replacing `YOUR_VERCEL_DIR` with your vercel directory, like:
// {
// "name": "Debug Go",
// "type": "go",
// "request": "launch",
// "mode": "auto",
// "program": "${fileDirname}",
// "args": [
// "-modpath=YOUR_VERCEL_DIR/packages/go/test/fixtures/24-bad-handler/api/",
// "YOUR_VERCEL_DIR/packages/go/test/fixtures/24-bad-handler/api/index.go"
// ]
// }