From e3dd7c6861a8f3d26ebf81dd672be1e3459f82b8 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sun, 15 May 2016 13:39:31 -0700 Subject: [PATCH] dhcp: add documentation file. --- dhcp/doc.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 dhcp/doc.go diff --git a/dhcp/doc.go b/dhcp/doc.go new file mode 100644 index 0000000..d3db0b9 --- /dev/null +++ b/dhcp/doc.go @@ -0,0 +1,16 @@ +// Copyright 2016 Google Inc. +// +// 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 dhcp provides building blocks for DHCP clients and servers. +package dhcp // import "go.universe.tf/netboot/dhcp"