Skip to content
Merged
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 admin.go → cmd/admin.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//

package main
package cmd

import (
"context"
Expand Down
4 changes: 1 addition & 3 deletions exporter.go → cmd/exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@
//
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//
// Author Adam Janikowski
//

package main
package cmd

import (
"context"
Expand Down
6 changes: 2 additions & 4 deletions lifecycle.go → cmd/lifecycle.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@
//
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//
// Author Ewout Prangsma
//

package main
package cmd

import (
"context"
Expand All @@ -47,7 +45,7 @@ import (
var (
cmdLifecycle = &cobra.Command{
Use: "lifecycle",
Run: cmdUsage,
Run: executeUsage,
Hidden: true,
}

Expand Down
4 changes: 1 addition & 3 deletions lifecycle_probes.go → cmd/lifecycle_probes.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@
//
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//
// Author Adam Janikowski
//

package main
package cmd

import (
"crypto/tls"
Expand Down
2 changes: 1 addition & 1 deletion lifecycle_wait.go → cmd/lifecycle_wait.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//

package main
package cmd

import (
"context"
Expand Down
Loading