From bcc923c61b07f7908610ffb30ce5a9fe716dd710 Mon Sep 17 00:00:00 2001 From: Samuel Melrose Date: Tue, 7 Jun 2022 11:10:17 +0100 Subject: [PATCH] deprecate Go module --- go.mod | 9 +++++++++ go.sum | 2 ++ 2 files changed, 11 insertions(+) create mode 100644 go.mod create mode 100644 go.sum diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..25026f4 --- /dev/null +++ b/go.mod @@ -0,0 +1,9 @@ +// Deprecated: PTYs are natively supported in Windows 10 October 2018 Update (version 1809) and above +// switch to https://github.com/UserExistsError/conpty +// and see this blog post for more details: +// https://devblogs.microsoft.com/commandline/windows-command-line-introducing-the-windows-pseudo-console-conpty/ +module github.com/iamacarpet/go-winpty + +go 1.18 + +require github.com/gorilla/websocket v1.5.0 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..e5a03d4 --- /dev/null +++ b/go.sum @@ -0,0 +1,2 @@ +github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc= +github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=