Unbreak build by including DNS packages and modules

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=129660098
This commit is contained in:
mcilwain 2016-08-08 12:38:25 -07:00 committed by Ben McIlwain
parent 92fa0d6781
commit 8a76171417
6 changed files with 190 additions and 0 deletions

View file

@ -0,0 +1,32 @@
// Copyright 2016 The Domain Registry Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package google.registry.dns.writer;
import dagger.Module;
import dagger.Provides;
import dagger.multibindings.IntoMap;
import dagger.multibindings.StringKey;
/** Dagger module that disables DNS updates. */
@Module
public final class VoidDnsWriterModule {
@Provides
@IntoMap
@StringKey(VoidDnsWriter.NAME)
static DnsWriter provideVoidDnsWriter(VoidDnsWriter writer) {
return writer;
}
}