blob: aa557a476cac28998d415c3aadda8d4fcc68ee2a [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package vdlroot defines the standard VDL packages; the VDLROOT environment
// variable should point at this directory.
//
// This package contains import dependencies on all its sub-packages. This is
// meant as a convenient mechanism to pull in all standard vdl packages; import
// vdlroot to ensure the types for all standard vdl packages are registered.
//
// To regenerate the .vdl.go files, specify VDLROOT when invoking the vdl tool.
// (by default, prebuilt copies of the packages will be used).
package vdlroot
import (
_ "v.io/v23/vdlroot/math"
_ "v.io/v23/vdlroot/signature"
_ "v.io/v23/vdlroot/time"
_ "v.io/v23/vdlroot/vdltool"
)