Imports
This commit is contained in:
parent
221dda89a1
commit
2c6b12a59c
8 changed files with 202189 additions and 3 deletions
|
@ -1,2 +1,5 @@
|
|||
# 1.0.0-alpha.1
|
||||
* Import `framework/http`.
|
||||
|
||||
# 1.0.0-alpha
|
||||
* Initial version.
|
183470
example/main.dill
Normal file
183470
example/main.dill
Normal file
File diff suppressed because one or more lines are too long
1
example/main.dill.map
Normal file
1
example/main.dill.map
Normal file
File diff suppressed because one or more lines are too long
18711
example/main.dill.txt
Normal file
18711
example/main.dill.txt
Normal file
File diff suppressed because one or more lines are too long
|
@ -1,3 +1,3 @@
|
|||
export 'src/instance_info.dart';
|
||||
export 'src/options.dart';
|
||||
export 'src/runner.dart';
|
||||
export 'src/runner.dart';
|
||||
|
|
|
@ -3,4 +3,4 @@ class InstanceInfo {
|
|||
final int id;
|
||||
|
||||
const InstanceInfo({this.id});
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@ import 'dart:io';
|
|||
import 'dart:isolate';
|
||||
import 'package:angel_container/angel_container.dart';
|
||||
import 'package:angel_framework/angel_framework.dart';
|
||||
import 'package:angel_framework/http.dart';
|
||||
import 'package:args/args.dart';
|
||||
import 'package:io/ansi.dart';
|
||||
import 'package:io/io.dart';
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: angel_production
|
||||
version: 1.0.0-alpha
|
||||
version: 1.0.0-alpha.1
|
||||
description: Helpers for concurrency, message-passing, rotating loggers, and other production functionality in Angel.
|
||||
author: Tobe O <thosakwe@gmail.com>
|
||||
homepage: https://github.com/angel-dart/production
|
||||
|
|
Loading…
Reference in a new issue