service/rpc1: add Go Reference doc (#3779)

This commit is contained in:
Oleksandr Redko 2024-07-12 22:10:25 +03:00 committed by GitHub
parent abad6bb97e
commit c1c9feae3e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

5
service/rpc1/doc.go Normal file

@ -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

@ -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.