Skip to content

Commit 84e84eb

Browse files
committed
add an AUTHORS file
1 parent 5dccca9 commit 84e84eb

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

AUTHORS

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Below is a list of people and organizations that have contributed
2+
# to the Dart Services project. Names should be added to the list like so:
3+
#
4+
# Name/Organization <email address>
5+
6+
Google Inc.
7+
George Moschovitis <[email protected]>

lib/services_server.dart

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@ import 'dart:io';
1010
import 'package:args/args.dart';
1111
import 'package:grinder/grinder.dart' as grinder;
1212
import 'package:logging/logging.dart';
13+
import 'package:rpc/rpc.dart';
1314
import 'package:shelf/shelf.dart';
1415
import 'package:shelf/shelf_io.dart' as shelf;
15-
import 'package:shelf_route/shelf_route.dart';
1616
import 'package:shelf_cors/shelf_cors.dart' as shelf_cors;
17-
import 'package:rpc/rpc.dart';
17+
import 'package:shelf_route/shelf_route.dart';
18+
1819
import 'src/common_server.dart';
1920

2021
const Map _textPlainHeader = const {HttpHeaders.CONTENT_TYPE: 'text/plain'};

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ dependencies:
1515
librato: '>=0.0.1 <0.1.0'
1616
logging: any
1717
shelf: any
18-
shelf_route: any
1918
shelf_cors: any
19+
shelf_route: any
2020
# TODO: change to pub package dependency once the rpc package is published.
2121
rpc:
2222
git: git://github.com/dart-lang/rpc.git

0 commit comments

Comments
 (0)