blob: 83d080d1312a38d0cc16cc20e91b55bfc4efcf40 [file] [log] [blame]
// Copyright 2026 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// A context for the current request.
///
/// This abstracts the underlying App Engine context to avoid direct dependencies
/// on package:appengine in core logic.
abstract class ClientContext {
/// Whether the application is running in the development environment.
bool get isDevelopmentEnvironment;
}