From 1e17a10eb66099f6442fed53314a79a48b983d7b Mon Sep 17 00:00:00 2001 From: Ariel Mashraki Date: Sun, 3 Sep 2023 14:15:49 +0300 Subject: [PATCH] cmd/atlas/cloudapi: add default atlas dir --- cmd/atlas/internal/cloudapi/client.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/atlas/internal/cloudapi/client.go b/cmd/atlas/internal/cloudapi/client.go index 8f9a306652a..153e65136d4 100644 --- a/cmd/atlas/internal/cloudapi/client.go +++ b/cmd/atlas/internal/cloudapi/client.go @@ -27,6 +27,9 @@ const ( defaultURL = "https://api.atlasgo.cloud/query" // DefaultProjectName is the default name for projects. DefaultProjectName = "default" + // DefaultDirName is the default directory for reporting + // if no directory was specified by the user. + DefaultDirName = ".atlas" ) // Client is a client for the Atlas Cloud API.