mirror of
https://github.com/square/certigo.git
synced 2024-04-21 12:32:40 +00:00
This moves two functions out of main.go. The only change to the functions was to make them take arguments, instead of using global variables in main. The mysql and psql imports are moved here too.
7 lines
137 B
Go
7 lines
137 B
Go
// Package oid contains OID constants
|
|
// as defined by the Postgres server.
|
|
package oid
|
|
|
|
// Oid is a Postgres Object ID.
|
|
type Oid uint32
|