991c9da720
Change-Id: I83555a81bb6394a8c2a740a5127175be85aabf3d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/98007 Commit-Queue: Samir Jindel <sjindel@google.com> Reviewed-by: Michael Thomsen <mit@google.com> Auto-Submit: Samir Jindel <sjindel@google.com>
11 lines
328 B
Dart
11 lines
328 B
Dart
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
/// A synchronous SQLite wrapper.
|
|
///
|
|
/// Written using dart:ffi.
|
|
library sqlite;
|
|
|
|
export "src/database.dart";
|