blob: 2fbfff9a7f9f972a11f32305ef30402392c4a68c [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.
package vdlroot
import (
_ "v.io/v23/vdlroot/math"
_ "v.io/v23/vdlroot/signature"
_ "v.io/v23/vdlroot/time"
_ "v.io/v23/vdlroot/vdltool"
)