Skip to content

Commit

Permalink
Merge pull request #153 from tonidy/fix-dotnet-interactive
Browse files Browse the repository at this point in the history
Fix dotnet interactive connect issue
  • Loading branch information
janpfeifer authored Jan 27, 2025
2 parents fe96dbf + bbc0478 commit 7afc861
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions internal/kernel/messages.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ type KernelInfo struct {
LanguageInfo KernelLanguageInfo `json:"language_info"`
Banner string `json:"banner"`
HelpLinks []HelpLink `json:"help_links"`
Status string `json:"status"`
}

// KernelLanguageInfo holds information about the language that this kernel executes code in.
Expand Down Expand Up @@ -567,11 +568,13 @@ func SendKernelInfo(msg Message, version string) error {
Name: "go",
Version: runtime.Version(),
FileExtension: ".go",
MIMEType: "text/x-go",
},
HelpLinks: []HelpLink{
{Text: "Go", URL: "https://golang.org/"},
{Text: "gonb", URL: "https://github.com/janpfeifer/gonb"},
},
Status: "ok",
},
)
}
Expand Down

0 comments on commit 7afc861

Please sign in to comment.