Skip to content

Commit 2254efc

Browse files
committed
Rename client.dart/web_client.dart to servicestack.dart / web.dart to match conventions
1 parent db35f8a commit 2254efc

20 files changed

+23
-24
lines changed

lib/client_dtos.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
part of client;
1+
part of servicestack;
22

33
abstract class IReturn<T>
44
{

lib/converters/duration_converter.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
part of client;
1+
part of servicestack;
22

33
class DurationConverter implements IConverter
44
{

lib/interfaces.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
part of client;
1+
part of servicestack;
22

33
abstract class IConverter
44
{

lib/json_converters.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
part of client;
1+
part of servicestack;
22

33
class JsonConverters
44
{

lib/json_service_client.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
part of client;
1+
part of servicestack;
22

33
typedef void UrlFilter(String url);
44
typedef Future AsyncCallbackFunction();

lib/client.dart renamed to lib/servicestack.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
library client;
1+
library servicestack;
22

33
import 'dart:io';
44
import 'dart:async';

lib/utils.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
part of client;
1+
part of servicestack;
22

33
List<String> splitOnFirst(String s, String c) {
44
if (s == null || s == "") return [s];

lib/web_client.dart renamed to lib/web.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import 'dart:convert';
33
import 'dart:typed_data';
44
import 'package:http/browser_client.dart';
55
import 'package:http/http.dart';
6-
import 'client.dart';
6+
import 'servicestack.dart';
77

88
typedef void WebRequestFilter(Request req);
99
typedef void WebResponseFilter(Response res);

test/client_auth_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import 'package:test/test.dart';
22

3-
import '../lib/client.dart';
3+
import '../lib/servicestack.dart';
44
import 'utils.dart';
55

66
import 'dtos/test.dtos.dart';

test/client_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import 'package:test/test.dart';
22
import 'dart:convert';
33
import 'dart:typed_data';
44

5-
import '../lib/client.dart';
5+
import '../lib/servicestack.dart';
66
import 'utils.dart';
77

88
import 'dtos/test.dtos.dart';

0 commit comments

Comments
 (0)