Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Go import comments. #107

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aws/kms/kms.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package kms
package kms // import "euphoria.io/heim/aws/kms"

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion backend/console/staff.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package console
package console // import "euphoria.io/heim/backend/console"

import (
"euphoria.io/heim/proto/security"
Expand Down
2 changes: 1 addition & 1 deletion backend/mock/doc.go
Original file line number Diff line number Diff line change
@@ -1 +1 @@
package mock
package mock // import "euphoria.io/heim/backend/mock"
2 changes: 1 addition & 1 deletion backend/pages.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package backend
package backend // import "euphoria.io/heim/backend"

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion backend/psql/ban.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package psql
package psql // import "euphoria.io/heim/backend/psql"

import (
"database/sql"
Expand Down
2 changes: 1 addition & 1 deletion cluster/cluster.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cluster
package cluster // import "euphoria.io/heim/cluster"

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion cluster/etcd/clustertest/testetcd.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package clustertest
package clustertest // import "euphoria.io/heim/cluster/etcd/clustertest"

import (
"bufio"
Expand Down
2 changes: 1 addition & 1 deletion cluster/etcd/etcd.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package etcd
package etcd // import "euphoria.io/heim/cluster/etcd"

import (
"encoding/hex"
Expand Down
2 changes: 1 addition & 1 deletion heimctl/activity/metrics.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package activity
package activity // import "euphoria.io/heim/heimctl/activity"

import "github.com/prometheus/client_golang/prometheus"

Expand Down
2 changes: 1 addition & 1 deletion heimctl/cmd/activity.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cmd
package cmd // import "euphoria.io/heim/heimctl/cmd"

import (
"flag"
Expand Down
2 changes: 1 addition & 1 deletion heimctl/presence/server.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package presence
package presence // import "euphoria.io/heim/heimctl/presence"

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion heimctl/retention/scanner.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package retention
package retention // import "euphoria.io/heim/heimctl/retention"

import (
"database/sql"
Expand Down
2 changes: 1 addition & 1 deletion heimctl/worker/emails.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package worker
package worker // import "euphoria.io/heim/heimctl/worker"

import (
"euphoria.io/heim/proto"
Expand Down
2 changes: 1 addition & 1 deletion proto/client.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proto
package proto // import "euphoria.io/heim/proto"

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion proto/emails/deliverer.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package emails
package emails // import "euphoria.io/heim/proto/emails"

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion proto/jobs/claim.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package jobs
package jobs // import "euphoria.io/heim/proto/jobs"

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion proto/logging/logging.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package logging
package logging // import "euphoria.io/heim/proto/logging"

import (
"io"
Expand Down
2 changes: 1 addition & 1 deletion proto/security/grants.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package security
package security // import "euphoria.io/heim/proto/security"

import (
"encoding/base64"
Expand Down
2 changes: 1 addition & 1 deletion proto/snowflake/snowflake.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package snowflake
package snowflake // import "euphoria.io/heim/proto/snowflake"

import (
"encoding/json"
Expand Down
2 changes: 1 addition & 1 deletion templates/email.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package templates
package templates // import "euphoria.io/heim/templates"

import (
"bufio"
Expand Down