39 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Dart
		
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Dart
		
	
	
	
| /*
 | |
|  * Copyright (c) 2019 Zender & Kurtz GbR.
 | |
|  *
 | |
|  * Authors:
 | |
|  *   Christian Pauly <krille@famedly.com>
 | |
|  *   Marcel Radzio <mtrnord@famedly.com>
 | |
|  *
 | |
|  * This file is part of famedlysdk.
 | |
|  *
 | |
|  * famedlysdk is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU General Public License as published by
 | |
|  * the Free Software Foundation, either version 3 of the License, or
 | |
|  * (at your option) any later version.
 | |
|  *
 | |
|  * famedlysdk is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU General Public License
 | |
|  * along with famedlysdk.  If not, see <http://www.gnu.org/licenses/>.
 | |
|  */
 | |
| 
 | |
| library famedlysdk;
 | |
| 
 | |
| export 'package:famedlysdk/src/responses/ErrorResponse.dart';
 | |
| export 'package:famedlysdk/src/sync/RoomUpdate.dart';
 | |
| export 'package:famedlysdk/src/sync/EventUpdate.dart';
 | |
| export 'package:famedlysdk/src/utils/ChatTime.dart';
 | |
| export 'package:famedlysdk/src/utils/MxContent.dart';
 | |
| export 'package:famedlysdk/src/Client.dart';
 | |
| export 'package:famedlysdk/src/Connection.dart';
 | |
| export 'package:famedlysdk/src/Event.dart';
 | |
| export 'package:famedlysdk/src/Room.dart';
 | |
| export 'package:famedlysdk/src/RoomList.dart';
 | |
| export 'package:famedlysdk/src/Store.dart';
 | |
| export 'package:famedlysdk/src/Timeline.dart';
 | |
| export 'package:famedlysdk/src/User.dart';
 |