From 22873d4c1ac422e35b0976a2b05320bd07a69584 Mon Sep 17 00:00:00 2001 From: Jake Spain Date: Mon, 30 Jan 2023 16:45:02 -0500 Subject: [PATCH] Rename/relocate clouddns to match other providers --- lib/vmpooler/dns/google/clouddns.rb | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/vmpooler/dns/google/clouddns.rb b/lib/vmpooler/dns/google/clouddns.rb index 6b9bf8b..92a91c3 100644 --- a/lib/vmpooler/dns/google/clouddns.rb +++ b/lib/vmpooler/dns/google/clouddns.rb @@ -1,13 +1,15 @@ # frozen_string_literal: true -require_relative "clouddns/version" +require 'googleauth' +require 'google/cloud/dns' module Vmpooler - module Dns - module Google - module Clouddns - class Error < StandardError; end - # Your code goes here... + class PoolManager + class Dns + class Google + class Clouddns + # Your code goes here... + end end end end