• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mongodb / mongodb-atlas-cli / 25848964073

14 May 2026 07:59AM UTC coverage: 22.479% (-41.3%) from 63.771%
25848964073

push

github

web-flow
build(deps): bump test-summary/action from 2.4 to 2.6 (#4576)

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

8987 of 39979 relevant lines covered (22.48%)

0.25 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/internal/cli/projects/projects.go
1
// Copyright 2023 MongoDB Inc
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
//      http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14

15
package projects
16

17
import (
18
        "github.com/mongodb/mongodb-atlas-cli/atlascli/internal/cli"
19
        "github.com/mongodb/mongodb-atlas-cli/atlascli/internal/cli/projects/apikeys"
20
        "github.com/mongodb/mongodb-atlas-cli/atlascli/internal/cli/projects/invitations"
21
        "github.com/mongodb/mongodb-atlas-cli/atlascli/internal/cli/projects/settings"
22
        "github.com/mongodb/mongodb-atlas-cli/atlascli/internal/cli/projects/teams"
23
        "github.com/mongodb/mongodb-atlas-cli/atlascli/internal/cli/projects/users"
24
        "github.com/spf13/cobra"
25
)
26

27
func Builder() *cobra.Command {
×
28
        const use = "projects"
×
29
        cmd := &cobra.Command{
×
30
                Use:     use,
×
31
                Short:   "Manage your Atlas projects.",
×
32
                Long:    "Create, list and manage your MongoDB projects.",
×
33
                Aliases: cli.GenerateAliases(use),
×
34
        }
×
35
        cmd.AddCommand(
×
36
                ListBuilder(),
×
37
                CreateBuilder(),
×
38
                UpdateBuilder(),
×
39
                DeleteBuilder(),
×
40
                DescribeBuilder(),
×
41
                apikeys.Builder(),
×
42
                users.Builder(),
×
43
                teams.Builder(),
×
44
                invitations.Builder(),
×
45
                settings.Builder(),
×
46
        )
×
47

×
48
        return cmd
×
49
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc