Skip to content

Commit

Permalink
Merge pull request #108 from Kwonunn/fix-logo
Browse files Browse the repository at this point in the history
Fix the ASCII logo
  • Loading branch information
Forceu authored Sep 17, 2023
2 parents 358a32a + f890e41 commit 97c2b76
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions cmd/gokapi/Main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ Main routine

import (
"fmt"
"os"
"os/signal"
"runtime/debug"
"syscall"

"github.com/forceu/gokapi/internal/configuration"
"github.com/forceu/gokapi/internal/configuration/cloudconfig"
"github.com/forceu/gokapi/internal/configuration/database"
Expand All @@ -22,10 +27,6 @@ import (
"github.com/forceu/gokapi/internal/webserver"
"github.com/forceu/gokapi/internal/webserver/authentication"
"github.com/forceu/gokapi/internal/webserver/ssl"
"os"
"os/signal"
"runtime/debug"
"syscall"
)

// versionGokapi is the current version in readable form.
Expand Down Expand Up @@ -156,7 +157,7 @@ var osExit = os.Exit

// ASCII art logo
const logo = `
██████  ██████  ██  ██  █████  ██████  ██ 
██████  ██████  ██  ██  █████  ██████  ██ 
██       ██    ██ ██  ██  ██   ██ ██   ██ ██ 
██  ███ ██  ██ █████   ███████ ██████  ██ 
██  ██ ██  ██ ██  ██  ██   ██ ██      ██ 
Expand Down

0 comments on commit 97c2b76

Please sign in to comment.