blob: 22aa270122d8451c006e638e00e826f8fd3a1603 [file] [log] [blame]
// Copyright 2016 The Chromium 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;
// An interface for loading components.
[Discoverable]
interface Loader {
// Load a components's package.
1: LoadComponent(string url) -> (Package? package);
};