: Start working on database persistence

This commit is contained in:
TwinProduction
2021-07-12 00:56:30 -04:00
committed by Chris
parent e6335da94f
commit bd1eb7c61b
657 changed files with 2190821 additions and 82 deletions
go.modgo.sum
storage/store
vendor
github.com
golang.org
lukechampine.com
modernc.org
cc
ccgo
libc
AUTHORSCONTRIBUTORSHACKINGLICENSELICENSE-GOMakefileREADME.mdcapi_darwin_amd64.gocapi_darwin_arm64.gocapi_linux_386.gocapi_linux_amd64.gocapi_linux_arm.gocapi_linux_arm64.gocapi_linux_s390x.gocapi_windows_386.gocapi_windows_amd64.goccgo.godmesg.go
errno
etc.go
fcntl
fsync.go
fts
go.modgo.sum
grp
honnef.co
int128.goioutil_darwin.goioutil_linux.go
langinfo
libc.golibc32.golibc64.golibc_darwin.golibc_darwin_amd64.golibc_darwin_arm64.golibc_linux.golibc_linux_386.golibc_linux_amd64.golibc_linux_arm.golibc_linux_arm64.golibc_linux_s390x.golibc_unix.golibc_windows.golibc_windows_386.golibc_windows_amd64.go
limits
log-generatemem.gomem_brk.gomemgrind.gomusl_darwin_amd64.gomusl_darwin_arm64.gomusl_linux_386.gomusl_linux_amd64.gomusl_linux_arm.gomusl_linux_arm64.gomusl_linux_s390x.gomusl_windows_386.gomusl_windows_amd64.go
netdb
netinet
nodmesg.gonofsync.gonopthreads.go
poll
printf.go
pthread
pthreads_linux_amd64.go
pwd
scanf.go
signal
stdio
sync_linux_amd64.gosync_linux_amd64.s
sys
termios
time
unistd
utime
uuid
mathutil
memory
opt
sqlite
strutil
token
modules.txt

22
vendor/golang.org/x/xerrors/doc.go generated vendored Normal file

@ -0,0 +1,22 @@
// Copyright 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package xerrors implements functions to manipulate errors.
//
// This package is based on the Go 2 proposal for error values:
// https://golang.org/design/29934-error-values
//
// These functions were incorporated into the standard library's errors package
// in Go 1.13:
// - Is
// - As
// - Unwrap
//
// Also, Errorf's %w verb was incorporated into fmt.Errorf.
//
// Use this package to get equivalent behavior in all supported Go versions.
//
// No other features of this package were included in Go 1.13, and at present
// there are no plans to include any of them.
package xerrors // import "golang.org/x/xerrors"