mirror of
https://github.com/unraid/api.git
synced 2026-05-20 16:10:15 -05:00
1da02e1610
Signed-off-by: Alexis Tyler <xo@wvvw.me>
21 lines
595 B
JavaScript
21 lines
595 B
JavaScript
/*
|
|
* Copyright 2005-2019, Lime Technology
|
|
* Copyright 2018-2019, Alexis Tyler
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
|
|
module.exports = function (deepmerge, GraphQLJSON, GraphQLLong, GraphQLUUID) {
|
|
return deepmerge.all([
|
|
{
|
|
JSON: GraphQLJSON,
|
|
Long: GraphQLLong,
|
|
UUID: GraphQLUUID
|
|
}
|
|
]);
|
|
}; |