1
0
mirror of https://github.com/go-ping/ping.git synced 2025-05-08 15:36:22 +00:00

Mark module as deprecated ()

This commit is contained in:
Thomas Casteleyn 2024-12-02 01:53:39 +01:00 committed by GitHub
parent caaf2b72ea
commit 610518ea2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 0 deletions

View File

@ -4,3 +4,7 @@ issues:
- path: _test.go
linters:
- errcheck
linters-settings:
staticcheck:
checks:
- "-SA1019"

View File

@ -1,3 +1,4 @@
// Deprecated: This package is no longer maintained.
package main
import (

View File

@ -1,5 +1,7 @@
// Package ping is a simple but powerful ICMP echo (ping) library.
//
// Deprecated: This package is no longer maintained.
//
// Here is a very simple example that sends and receives three packets:
//
// pinger, err := ping.NewPinger("www.google.com")