Skip to content

Commit

Permalink
chore: username change
Browse files Browse the repository at this point in the history
  • Loading branch information
obscurity committed Dec 30, 2022
1 parent 81bb9d2 commit e1502b5
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. 🍡

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/x6r/asunder
module github.com/fawni/asunder

go 1.16

Expand Down
4 changes: 2 additions & 2 deletions internal/cmd/add.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
4 changes: 2 additions & 2 deletions internal/cmd/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
4 changes: 2 additions & 2 deletions internal/cmd/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions internal/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion internal/database/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/x6r/asunder/internal/cmd"
"github.com/fawni/asunder/internal/cmd"
)

func main() {
Expand Down

0 comments on commit e1502b5

Please sign in to comment.