blob: 8cb4af5472d2f896953f55b6af164d8b3d2e909d [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 fuchsia.modular;
// A container for component-scoped services. This contains any and all
// services needed by any sort of Module/Agent.
[Discoverable]
protocol IntelligenceServices {
// These are just here for illustrative purposes, and are not a complete
// list.
GetContextReader(request<ContextReader> context_reader);
GetContextWriter(request<ContextWriter> context_writer);
};