From e1502b574576871978d9df181885b191d783cdb0 Mon Sep 17 00:00:00 2001 From: obscurity Date: Fri, 30 Dec 2022 22:22:51 +0200 Subject: [PATCH] chore: username change --- README.md | 10 +++++----- go.mod | 2 +- internal/cmd/add.go | 4 ++-- internal/cmd/delete.go | 4 ++-- internal/cmd/model.go | 4 ++-- internal/cmd/root.go | 4 ++-- internal/database/database.go | 2 +- main.go | 2 +- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index dda085f..c460b45 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ > Asunder, Sweet and Other Distress -[![Latest Release](https://img.shields.io/github/release/x6r/asunder.svg)](https://github.com/x6r/asunder/releases) -[![Build Status](https://img.shields.io/github/actions/workflow/status/x6r/asunder/build.yml?logo=github&branch=master)](https://github.com/x6r/asunder/actions) -[![Go Report Card](https://goreportcard.com/badge/github.com/x6r/asunder)](https://goreportcard.com/report/github.com/x6r/asunder) +[![Latest Release](https://img.shields.io/github/release/fawni/asunder.svg)](https://github.com/fawni/asunder/releases) +[![Build Status](https://img.shields.io/github/actions/workflow/status/fawni/asunder/build.yml?logo=github&branch=master)](https://github.com/fawni/asunder/actions) +[![Go Report Card](https://goreportcard.com/badge/github.com/fawni/asunder)](https://goreportcard.com/report/github.com/fawni/asunder) A pretty, little two-factor authenticaton _(2FA)_ client for the command line. 🍡 @@ -14,14 +14,14 @@ A pretty, little two-factor authenticaton _(2FA)_ client for the command line. ### Binaries -Download a binary from the [releases](https://github.com/x6r/asunder/releases) +Download a binary from the [releases](https://github.com/fawni/asunder/releases) page. ### Build from source Go 1.16 or higher required. ([install instructions](https://golang.org/doc/install.html)) - go install github.com/x6r/asunder@latest + go install github.com/fawni/asunder@latest ## Usage diff --git a/go.mod b/go.mod index 543c0b8..e82f2ee 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/x6r/asunder +module github.com/fawni/asunder go 1.16 diff --git a/internal/cmd/add.go b/internal/cmd/add.go index 6ada23f..af79353 100644 --- a/internal/cmd/add.go +++ b/internal/cmd/add.go @@ -5,9 +5,9 @@ import ( "fmt" "github.com/AlecAivazis/survey/v2" + "github.com/fawni/asunder/internal/common" + "github.com/fawni/asunder/internal/database" "github.com/spf13/cobra" - "github.com/x6r/asunder/internal/common" - "github.com/x6r/asunder/internal/database" ) var ( diff --git a/internal/cmd/delete.go b/internal/cmd/delete.go index 288fccb..c4f9cd8 100644 --- a/internal/cmd/delete.go +++ b/internal/cmd/delete.go @@ -7,11 +7,11 @@ import ( "strings" "github.com/AlecAivazis/survey/v2" + "github.com/fawni/asunder/internal/common" + "github.com/fawni/asunder/internal/database" "github.com/jedib0t/go-pretty/v6/table" "github.com/muesli/termenv" "github.com/spf13/cobra" - "github.com/x6r/asunder/internal/common" - "github.com/x6r/asunder/internal/database" ) var ( diff --git a/internal/cmd/model.go b/internal/cmd/model.go index de1fe15..52afff2 100644 --- a/internal/cmd/model.go +++ b/internal/cmd/model.go @@ -10,10 +10,10 @@ import ( "github.com/charmbracelet/bubbles/list" "github.com/charmbracelet/bubbles/timer" tea "github.com/charmbracelet/bubbletea" + "github.com/fawni/asunder/internal/common" + "github.com/fawni/asunder/internal/database" "github.com/muesli/termenv" "github.com/pquerna/otp/totp" - "github.com/x6r/asunder/internal/common" - "github.com/x6r/asunder/internal/database" ) type Item struct { diff --git a/internal/cmd/root.go b/internal/cmd/root.go index 57f45a7..5f2fd21 100644 --- a/internal/cmd/root.go +++ b/internal/cmd/root.go @@ -11,10 +11,10 @@ import ( "github.com/charmbracelet/bubbles/list" "github.com/charmbracelet/bubbles/timer" tea "github.com/charmbracelet/bubbletea" + "github.com/fawni/asunder/internal/common" + "github.com/fawni/asunder/internal/database" "github.com/muesli/termenv" "github.com/spf13/cobra" - "github.com/x6r/asunder/internal/common" - "github.com/x6r/asunder/internal/database" ) type keymap struct { diff --git a/internal/database/database.go b/internal/database/database.go index cba3572..1b9467e 100644 --- a/internal/database/database.go +++ b/internal/database/database.go @@ -5,10 +5,10 @@ import ( "database/sql" "os" + "github.com/fawni/asunder/internal/common" "github.com/uptrace/bun" "github.com/uptrace/bun/dialect/sqlitedialect" "github.com/uptrace/bun/driver/sqliteshim" - "github.com/x6r/asunder/internal/common" ) type DB = bun.DB diff --git a/main.go b/main.go index 3a5d3aa..5c459de 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/x6r/asunder/internal/cmd" + "github.com/fawni/asunder/internal/cmd" ) func main() {