2
0

rename module

This commit is contained in:
2024-05-07 09:24:09 +03:00
parent 7bdd00f685
commit ef15a31d17
3 changed files with 8 additions and 15 deletions
-9
View File
@@ -1,9 +0,0 @@
language: go
go:
- 1.x
- tip
matrix:
allow_failures:
- go: tip
+1 -4
View File
@@ -1,8 +1,5 @@
[![](https://godoc.org/github.com/andoma-go/pgpassfile?status.svg)](https://godoc.org/github.com/andoma-go/pgpassfile)
[![Build Status](https://travis-ci.org/andoma-go/pgpassfile.svg)](https://travis-ci.org/andoma-go/pgpassfile)
# pgpassfile
Package pgpassfile is a parser PostgreSQL .pgpass files.
Extracted and rewritten from original implementation in https://github.com/andoma-go/pgx.
Extracted and rewritten from original implementation in https://github.com/jackc/pgx.
+7 -2
View File
@@ -1,5 +1,10 @@
module github.com/andoma-go/pgpassfile
module git.company.lan/gopkg/pgpassfile
go 1.12
go 1.21.5
require github.com/stretchr/testify v1.3.0
require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
)