From c1c9feae3e021c6b37e84d477fb161f318b44caa Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Fri, 12 Jul 2024 22:10:25 +0300 Subject: [PATCH] service/rpc1: add Go Reference doc (#3779) --- service/rpc1/doc.go | 5 +++++ service/rpc1/readme.txt | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 service/rpc1/doc.go delete mode 100644 service/rpc1/readme.txt diff --git a/service/rpc1/doc.go b/service/rpc1/doc.go new file mode 100644 index 00000000..463384bb --- /dev/null +++ b/service/rpc1/doc.go @@ -0,0 +1,5 @@ +// Package rpc1 implements version 1 of Delve's API and is only +// kept for backwards compatibility. +// client.go is the old client code used by Delve's frontend (delve/cmd/dlv) and +// is preserved for backwards compatibility with integration tests. +package rpc1 diff --git a/service/rpc1/readme.txt b/service/rpc1/readme.txt deleted file mode 100644 index c25192d8..00000000 --- a/service/rpc1/readme.txt +++ /dev/null @@ -1,5 +0,0 @@ -This package implements version 1 of Delve's API and is only -kept here for backwards compatibility. Client.go is the old -client code used by Delve's frontend (delve/cmd/dlv), it is -only preserved here for the backwards compatibility tests in -service/test/integration1_test.go.