blob: 3e4548d461c87c0a0913ca9f1fba2c6a18e15722 [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library modular;
// Addresses a Link within a story.
struct LinkPath {
// The module_path of the module this link was created under.
vector<string> module_path;
// Name of the link itself.
string link_name;
};