Authentication-Results: mail-b.sr.ht; dkim=pass header.d=secluded.site header.i=@secluded.site Received: from mx.nixnet.email (mx.nixnet.email [94.16.121.167]) by mail-b.sr.ht (Postfix) with ESMTPS id 4963811EFC9 for <~whereswaldon/arbor-dev@lists.sr.ht>; Thu, 21 Jul 2022 03:10:58 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by mx.nixnet.email (Postfix) with ESMTPSA id 1D785202876; Wed, 20 Jul 2022 23:10:39 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=secluded.site; s=202002021149; t=1658373040; h=from:from:reply-to:subject:subject:to:to:cc:cc; bh=jnKCUl/W8aEp4cJUaP2AXLYMkuHPeHCS0HodROd/V8w=; b=Hw3uQcEfICdyinEFIM4wlOomWlnVEr2PJvesWYdzrgCI+pPv9MUbqT3B7i8QEG/rUx0kca 8q2RfGkhJY0sFvjfQ7K/8U3b0bb7L7A9svluuUH0zrgpTF3sTbZnBQbAg64gl9Qtw9ZWCx ISxP2Xn4oWklSxwYJnZB0FxE03RXUUA= From: Amolith To: ~whereswaldon/arbor-dev@lists.sr.ht Cc: Amolith Subject: [PATCH 12/12] Add go.mod and go.sum Date: Wed, 20 Jul 2022 23:10:01 -0400 Message-Id: <20220721031001.97027-13-amolith@secluded.site> X-Mailer: git-send-email 2.37.1 In-Reply-To: <20220721031001.97027-1-amolith@secluded.site> References: <20220721031001.97027-1-amolith@secluded.site> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Signed-off-by: Amolith --- go.mod | 5 +++++ go.sum | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 go.mod create mode 100644 go.sum diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..7ab8e85 --- /dev/null +++ b/go.mod @@ -0,0 +1,5 @@ +module arbor-infra + +go 1.16 + +require github.com/magefile/mage v1.13.0 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..f0b89dd --- /dev/null +++ b/go.sum @@ -0,0 +1,4 @@ +github.com/magefile/mage v1.11.0 h1:C/55Ywp9BpgVVclD3lRnSYCwXTYxmSppIgLeDYlNuls= +github.com/magefile/mage v1.11.0/go.mod h1:z5UZb/iS3GoOSn0JgWuiw7dxlurVYTu+/jHXqQg881A= +github.com/magefile/mage v1.13.0 h1:XtLJl8bcCM7EFoO8FyH8XK3t7G5hQAeK+i4tq+veT9M= +github.com/magefile/mage v1.13.0/go.mod h1:z5UZb/iS3GoOSn0JgWuiw7dxlurVYTu+/jHXqQg881A= -- 2.37.1