Skip to content

Commit

Permalink
rename to certguard
Browse files Browse the repository at this point in the history
  • Loading branch information
pimg committed Feb 22, 2024
1 parent 722cd49 commit 96d9af2
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
crl-inspector

cg
.idea
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ test:
@PHONY: lint
lint:
golangci-lint run --out-format=github-actions

@PHONY: build
build:
go build -o cg
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package cmd

import (
tea "github.com/charmbracelet/bubbletea"
"github.com/pimg/crl-inspector/internal/ports/models"
"github.com/pimg/certguard/internal/ports/models"
"github.com/spf13/cobra"
)

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/pimg/crl-inspector
module github.com/pimg/certguard

go 1.21

Expand Down
4 changes: 2 additions & 2 deletions internal/ports/models/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"github.com/charmbracelet/bubbles/key"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/pimg/crl-inspector/internal/ports/models/messages"
"github.com/pimg/crl-inspector/internal/ports/models/styles"
"github.com/pimg/certguard/internal/ports/models/messages"
"github.com/pimg/certguard/internal/ports/models/styles"
)

type sessionState int
Expand Down
4 changes: 2 additions & 2 deletions internal/ports/models/commands/crl_request.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strings"

tea "github.com/charmbracelet/bubbletea"
"github.com/pimg/crl-inspector/internal/ports/models/messages"
"github.com/pimg/crl-inspector/pkg/crl"
"github.com/pimg/certguard/internal/ports/models/messages"
"github.com/pimg/certguard/pkg/crl"
)

func GetCRL(requestURL string) tea.Cmd {
Expand Down
8 changes: 4 additions & 4 deletions internal/ports/models/input.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import (
"github.com/charmbracelet/bubbles/textinput"
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/pimg/crl-inspector/internal/ports/models/commands"
"github.com/pimg/crl-inspector/internal/ports/models/messages"
"github.com/pimg/crl-inspector/internal/ports/models/styles"
"github.com/pimg/crl-inspector/pkg/uri"
"github.com/pimg/certguard/internal/ports/models/commands"
"github.com/pimg/certguard/internal/ports/models/messages"
"github.com/pimg/certguard/internal/ports/models/styles"
"github.com/pimg/certguard/pkg/uri"
)

// keyMap defines a set of keybindings. To work for help it must satisfy
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"log"

"github.com/pimg/crl-inspector/cmd"
"github.com/pimg/certguard/cmd"
)

func main() {
Expand Down

0 comments on commit 96d9af2

Please sign in to comment.