// Copyright 2019 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 fuchsia.sys; | |
/// A URL used to retrieve, launch, and load a component from a specified network | |
/// location, or to identify a component when connecting to it. | |
using component_url = string:MAX_URL_LENGTH; | |
const uint16 MAX_URL_LENGTH = 2083; |