Skip to content

Commit

Permalink
refactoring: sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Tatarinov committed Feb 10, 2024
1 parent b86c0d2 commit 2049b50
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions cmd/main.go
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
package main

import (
"birdhouse/modules/routing"
"birdhouse/modules/service"
telegramservice "birdhouse/modules/telegram-service"
"crypto/x509"
"encoding/pem"
"fmt"
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
"github.com/google/uuid"
"github.com/julienschmidt/httprouter"
"github.com/oklog/run"
"log"
"net/http"
"os"
"strconv"

tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
"github.com/google/uuid"
"github.com/julienschmidt/httprouter"
"github.com/oklog/run"

"birdhouse/modules/routing"
"birdhouse/modules/service"
telegramservice "birdhouse/modules/telegram-service"
)

// @title Example API
Expand Down

0 comments on commit 2049b50

Please sign in to comment.