Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 19 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# JavaScript Executor MCP Server

This MCP server provides JavaScript execution capabilities with ski runtime.
This MCP server provides JavaScript execution capabilities with a modern runtime.

## Features

The `executeJS` tool provides:

- **Console API**: `console.log()`, `console.error()`, `console.warn()` (built-in)
- **HTTP Server**: `serve()` for server creation (via `require('ski/http/server')`)
- **HTTP Server**: `serve()` for server creation (via `require('http/server')`)
- **Fetch API**: Modern `fetch()` with Request, Response, Headers, FormData (global)
- **Timers**: `setTimeout()`, `setInterval()`, `clearTimeout()`, `clearInterval()` (global)
- **Buffer**: Buffer, Blob, File APIs for binary data handling (global)
- **Crypto**: Cryptographic functions - hashing, encryption, HMAC (via `require('ski/crypto')`)
- **Cache**: In-memory caching with TTL support (via `require('ski/cache')`)
- **Additional modules**: dom, encoding (global), ext, html, signal (global), stream (global), url (global)
- **Crypto**: Cryptographic functions - hashing, encryption, HMAC (via `require('crypto')`)
- **Cache**: In-memory caching with TTL support (via `require('cache')`)
- **Additional modules**: encoding (global), url (global)

## Getting Started

Expand Down Expand Up @@ -47,21 +47,16 @@ codebench-mcp --help
```

**Available modules:**
- `http` - HTTP server creation and client requests (import serve from 'ski/http/server')
- `http` - HTTP server creation and client requests (require('http/server'))
- `fetch` - Modern fetch API with Request, Response, Headers, FormData (available globally)
- `timers` - setTimeout, setInterval, clearTimeout, clearInterval (available globally)
- `buffer` - Buffer, Blob, File APIs for binary data handling (available globally)
- `cache` - In-memory caching with TTL support (import cache from 'ski/cache')
- `crypto` - Cryptographic functions (hashing, encryption, HMAC) (import crypto from 'ski/crypto')
- `dom` - DOM Event and EventTarget APIs
- `cache` - In-memory caching with TTL support (require('cache'))
- `crypto` - Cryptographic functions (hashing, encryption, HMAC) (require('crypto'))
- `encoding` - TextEncoder, TextDecoder for text encoding/decoding (available globally)
- `ext` - Extended context and utility functions
- `html` - HTML parsing and manipulation
- `signal` - AbortController and AbortSignal for cancellation (available globally)
- `stream` - ReadableStream and streaming APIs (available globally)
- `url` - URL and URLSearchParams APIs (available globally)

**Default modules:** `http`, `fetch`, `timers`, `buffer`, `crypto`
All modules are enabled by default. You can selectively enable or disable modules using CLI flags.

**Note:** The `executeJS` tool description dynamically updates to show only the enabled modules and includes detailed information about what each module provides.

Expand All @@ -73,13 +68,13 @@ package main
import (
"log"

"github.com/mark3labs/codebench-mcp/jsserver"
"github.com/mark3labs/codebench-mcp/server"
"github.com/mark3labs/mcp-go/server"
)

func main() {
// Create a new JavaScript executor server
jss, err := jsserver.NewJSServer()
jss, err := server.NewJSServer()
if err != nil {
log.Fatalf("Failed to create server: %v", err)
}
Expand All @@ -100,17 +95,17 @@ import (
"context"
"log"

"github.com/mark3labs/codebench-mcp/jsserver"
"github.com/mark3labs/codebench-mcp/server"
"github.com/mark3labs/mcp-go/client"
"github.com/mark3labs/mcp-go/mcp"
)

func main() {
// Create the JS server with custom module configuration
config := jsserver.ModuleConfig{
config := server.ModuleConfig{
EnabledModules: []string{"fetch", "crypto", "buffer"},
}
jsServer, err := jsserver.NewJSServerWithConfig(config)
jsServer, err := server.NewJSServerWithConfig(config)
if err != nil {
log.Fatalf("Failed to create server: %v", err)
}
Expand Down Expand Up @@ -212,7 +207,7 @@ To integrate the Docker image with apps that support MCP:

### executeJS

Execute JavaScript code with ski runtime environment.
Execute JavaScript code with a modern runtime environment.

**Parameters:**
- `code` (required): JavaScript code to execute
Expand All @@ -230,18 +225,18 @@ const response = await fetch('https://api.example.com/data');
const data = await response.json();

// HTTP server (require import)
const serve = require('ski/http/server');
const serve = require('http/server');
serve(8000, async (req) => {
return new Response('Hello World');
});

// Cache operations (require import)
const cache = require('ski/cache');
const cache = require('cache');
cache.set('key', 'value');
console.log(cache.get('key'));

// Crypto operations (require import)
const crypto = require('ski/crypto');
const crypto = require('crypto');
const hash = crypto.md5('hello').hex();
console.log('MD5 hash:', hash);

Expand All @@ -260,7 +255,7 @@ console.log('Pathname:', url.pathname);

## Limitations

- **No fs or process modules** - File system and process APIs are not available in ski runtime
- **No fs or process modules** - File system and process APIs are not available in the runtime
- **Module access varies** - Some modules are global (fetch, http), others may need require()
- **Each execution creates a fresh VM** - For isolation, each execution starts with a clean state
- **Module filtering** - Configuration exists but actual runtime filtering not fully implemented
Expand Down
54 changes: 33 additions & 21 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@ package cmd

import (
"fmt"
"log"
"os"
"slices"
"strings"

"github.com/mark3labs/codebench-mcp/jsserver"
"github.com/mark3labs/mcp-go/server"
"github.com/mark3labs/codebench-mcp/internal/logger"
"github.com/mark3labs/codebench-mcp/server"
mcpserver "github.com/mark3labs/mcp-go/server"
"github.com/spf13/cobra"
)

var (
enabledModules []string
disabledModules []string
debugMode bool
)

// Available modules
Expand All @@ -23,27 +24,34 @@ var availableModules = []string{
"fetch",
"timers",
"buffer",
"cache",
"kv",
"crypto",
"dom",
"encoding",
"ext",
"html",
"signal",
"stream",
"url",
"cache",
// TODO: Add these as they're implemented
// "dom",
// "ext",
// "html",
// "signal",
// "stream",
}

// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "codebench-mcp",
Short: "JavaScript Executor MCP Server",
Long: `A Model Context Protocol (MCP) server that provides JavaScript execution capabilities
with ski runtime including http, fetch, timers, buffer, crypto, and other modules.`,
with a modern runtime including http, fetch, timers, buffer, crypto, and other modules.`,
Run: func(cmd *cobra.Command, args []string) {
// Initialize logger first
logger.Init(debugMode)

logger.Debug("Starting codebench-mcp server", "debug", debugMode)

// Validate module configuration
if len(enabledModules) > 0 && len(disabledModules) > 0 {
log.Fatal("Error: --enabled-modules and --disabled-modules are mutually exclusive")
logger.Fatal("--enabled-modules and --disabled-modules are mutually exclusive")
}

// Determine which modules to enable
Expand All @@ -52,17 +60,15 @@ with ski runtime including http, fetch, timers, buffer, crypto, and other module
// Only enable specified modules
for _, module := range enabledModules {
if !slices.Contains(availableModules, module) {
log.Fatalf("Error: unknown module '%s'. Available modules: %s",
module, strings.Join(availableModules, ", "))
logger.Fatal("unknown module", "module", module, "available", strings.Join(availableModules, ", "))
}
}
modulesToEnable = enabledModules
} else if len(disabledModules) > 0 {
// Enable all modules except disabled ones
for _, module := range disabledModules {
if !slices.Contains(availableModules, module) {
log.Fatalf("Error: unknown module '%s'. Available modules: %s",
module, strings.Join(availableModules, ", "))
logger.Fatal("unknown module", "module", module, "available", strings.Join(availableModules, ", "))
}
}
for _, module := range availableModules {
Expand All @@ -72,22 +78,26 @@ with ski runtime including http, fetch, timers, buffer, crypto, and other module
}
} else {
// Enable default modules (same as NewJSHandler default)
modulesToEnable = []string{"http", "fetch", "timers", "buffer", "crypto"}
modulesToEnable = []string{"http", "fetch", "timers", "buffer", "kv", "crypto", "encoding", "url", "cache"}
}

logger.Debug("Module configuration", "enabled", modulesToEnable)

// Create server with module configuration
config := jsserver.ModuleConfig{
config := server.ModuleConfig{
EnabledModules: modulesToEnable,
}

jss, err := jsserver.NewJSServerWithConfig(config)
jss, err := server.NewJSServerWithConfig(config)
if err != nil {
log.Fatalf("Failed to create server: %v", err)
logger.Fatal("Failed to create server", "error", err)
}

logger.Info("Starting MCP server", "modules", modulesToEnable)

// Serve requests
if err := server.ServeStdio(jss); err != nil {
log.Fatalf("Server error: %v", err)
if err := mcpserver.ServeStdio(jss); err != nil {
logger.Fatal("Server error", "error", err)
}
},
}
Expand All @@ -107,6 +117,8 @@ func init() {
rootCmd.Flags().StringSliceVar(&disabledModules, "disabled-modules", nil,
fmt.Sprintf("Comma-separated list of modules to disable. Available: %s",
strings.Join(availableModules, ", ")))
rootCmd.Flags().BoolVar(&debugMode, "debug", false,
"Enable debug logging (outputs to stderr)")

rootCmd.MarkFlagsMutuallyExclusive("enabled-modules", "disabled-modules")
}
19 changes: 16 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,39 @@ module github.com/mark3labs/codebench-mcp
go 1.23.10

require (
github.com/charmbracelet/log v0.4.2
github.com/grafana/sobek v0.0.0-20250312125646-01f8811babf6
github.com/mark3labs/mcp-go v0.32.0
github.com/shiroyk/ski v0.0.0-20250408031354-4adc80b35df6
github.com/spf13/cobra v1.9.1
github.com/stretchr/testify v1.10.0
)

require (
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect
github.com/charmbracelet/lipgloss v1.1.0 // indirect
github.com/charmbracelet/x/ansi v0.8.0 // indirect
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd // indirect
github.com/charmbracelet/x/term v0.2.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dlclark/regexp2 v1.11.5 // indirect
github.com/go-logfmt/logfmt v0.6.0 // indirect
github.com/go-sourcemap/sourcemap v2.1.4+incompatible // indirect
github.com/google/pprof v0.0.0-20250302191652-9094ed2288e7 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.16 // indirect
github.com/muesli/termenv v0.16.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/spf13/cast v1.7.1 // indirect
github.com/spf13/pflag v1.0.6 // indirect
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
golang.org/x/crypto v0.36.0 // indirect
golang.org/x/net v0.37.0 // indirect
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
golang.org/x/sys v0.31.0 // indirect
golang.org/x/text v0.23.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
40 changes: 34 additions & 6 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,12 +1,28 @@
github.com/Masterminds/semver/v3 v3.2.1 h1:RN9w6+7QoMeJVGyfmbcgs28Br8cvmnucEXnY0rYXWg0=
github.com/Masterminds/semver/v3 v3.2.1/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYrf8m9wsX0PNOMQ=
github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiErDT4WkJ2k=
github.com/aymanbagabas/go-osc52/v2 v2.0.1/go.mod h1:uYgXzlJ7ZpABp8OJ+exZzJJhRNQ2ASbcXHWsFqH8hp8=
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc h1:4pZI35227imm7yK2bGPcfpFEmuY1gc2YSTShr4iJBfs=
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc/go.mod h1:X4/0JoqgTIPSFcRA/P6INZzIuyqdFY5rm8tb41s9okk=
github.com/charmbracelet/lipgloss v1.1.0 h1:vYXsiLHVkK7fp74RkV7b2kq9+zDLoEU4MZoFqR/noCY=
github.com/charmbracelet/lipgloss v1.1.0/go.mod h1:/6Q8FR2o+kj8rz4Dq0zQc3vYf7X+B0binUUBwA0aL30=
github.com/charmbracelet/log v0.4.2 h1:hYt8Qj6a8yLnvR+h7MwsJv/XvmBJXiueUcI3cIxsyig=
github.com/charmbracelet/log v0.4.2/go.mod h1:qifHGX/tc7eluv2R6pWIpyHDDrrb/AG71Pf2ysQu5nw=
github.com/charmbracelet/x/ansi v0.8.0 h1:9GTq3xq9caJW8ZrBTe0LIe2fvfLR/bYXKTx2llXn7xE=
github.com/charmbracelet/x/ansi v0.8.0/go.mod h1:wdYl/ONOLHLIVmQaxbIYEC/cRKOQyjTkowiI4blgS9Q=
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd h1:vy0GVL4jeHEwG5YOXDmi86oYw2yuYUGqz6a8sLwg0X8=
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd/go.mod h1:xe0nKWGd3eJgtqZRaN9RjMtK7xUYchjzPr7q6kcvCCs=
github.com/charmbracelet/x/term v0.2.1 h1:AQeHeLZ1OqSXhrAWpYUtZyX1T3zVxfpZuEQMIQaGIAQ=
github.com/charmbracelet/x/term v0.2.1/go.mod h1:oQ4enTYFV7QN4m0i9mzHrViD7TQKvNEEkHUMCmsxdUg=
github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/dlclark/regexp2 v1.11.5 h1:Q/sSnsKerHeCkc/jSTNq1oCm7KiVgUMZRDUoRu0JQZQ=
github.com/dlclark/regexp2 v1.11.5/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8=
github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8=
github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0=
github.com/go-logfmt/logfmt v0.6.0 h1:wGYYu3uicYdqXVgoYbvnkrPVXkuLM1p1ifugDMEdRi4=
github.com/go-logfmt/logfmt v0.6.0/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs=
github.com/go-sourcemap/sourcemap v2.1.4+incompatible h1:a+iTbH5auLKxaNwQFg0B+TCYl6lbukKPc7b5x0n1s6Q=
github.com/go-sourcemap/sourcemap v2.1.4+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg=
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
Expand All @@ -23,15 +39,24 @@ github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/lucasb-eyer/go-colorful v1.2.0 h1:1nnpGOrhyZZuNyfu1QjKiUICQ74+3FNCN69Aj6K7nkY=
github.com/lucasb-eyer/go-colorful v1.2.0/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
github.com/mark3labs/mcp-go v0.32.0 h1:fgwmbfL2gbd67obg57OfV2Dnrhs1HtSdlY/i5fn7MU8=
github.com/mark3labs/mcp-go v0.32.0/go.mod h1:rXqOudj/djTORU/ThxYx8fqEVj/5pvTuuebQ2RC7uk4=
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
github.com/mattn/go-runewidth v0.0.16 h1:E5ScNMtiwvlvB5paMFdw9p4kSQzbXFikJ5SQO6TULQc=
github.com/mattn/go-runewidth v0.0.16/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
github.com/muesli/termenv v0.16.0 h1:S5AlUN9dENB57rsbnkPyfdGuWIlkmzJjbFf0Tf5FWUc=
github.com/muesli/termenv v0.16.0/go.mod h1:ZRfOIKPFDYQoDFF4Olj7/QJbW60Ol/kL1pU3VfY/Cnk=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8=
github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs=
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/shiroyk/ski v0.0.0-20250408031354-4adc80b35df6 h1:MP/JX14gcF+xYACElKB+Dzr56oMW8xLO/r+2CKnsusc=
github.com/shiroyk/ski v0.0.0-20250408031354-4adc80b35df6/go.mod h1:jCP1xHey89rnssFI9hlBSNOZ34LUROFMysGNkE5otlY=
github.com/spf13/cast v1.7.1 h1:cuNEagBQEHWN1FnbGEjCXL2szYEXqfJPbP2HNUaca9Y=
github.com/spf13/cast v1.7.1/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo=
github.com/spf13/cobra v1.9.1 h1:CXSaggrXdbHK9CF+8ywj8Amf7PBRmPCOJugH954Nnlo=
Expand All @@ -40,12 +65,15 @@ github.com/spf13/pflag v1.0.6 h1:jFzHGLGAlb3ruxLB8MhbI6A8+AQX/2eW4qeyNZXNp2o=
github.com/spf13/pflag v1.0.6/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e h1:JVG44RsyaB9T2KIHavMF/ppJZNG9ZpyihvCd0w101no=
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e/go.mod h1:RbqR21r5mrJuqunuUZ/Dhy/avygyECGrLceyNeo4LiM=
github.com/yosida95/uritemplate/v3 v3.0.2 h1:Ed3Oyj9yrmi9087+NczuL5BwkIc4wvTb5zIM+UJPGz4=
github.com/yosida95/uritemplate/v3 v3.0.2/go.mod h1:ILOh0sOhIJR3+L/8afwt/kE++YT040gmv5BQTMR2HP4=
golang.org/x/crypto v0.36.0 h1:AnAEvhDddvBdpY+uR+MyHmuZzzNqXSe/GvuDeob5L34=
golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc=
golang.org/x/net v0.37.0 h1:1zLorHbz+LYj7MQlSf1+2tPIIgibq2eL5xkrGk6f+2c=
golang.org/x/net v0.37.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8=
golang.org/x/exp v0.0.0-20231006140011-7918f672742d h1:jtJma62tbqLibJ5sFQz8bKtEM8rJBtfilJ2qTU199MI=
golang.org/x/exp v0.0.0-20231006140011-7918f672742d/go.mod h1:ldy0pHrwJyGW56pPQzzkH36rKxoZW1tw7ZJpeKx+hdo=
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik=
golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY=
golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
Expand Down
Loading