diff --git a/src/db/models.ts b/src/db/models.ts index af883e0..d15ff61 100644 --- a/src/db/models.ts +++ b/src/db/models.ts @@ -1,3 +1,18 @@ +// Copyright (C) 2019 ModZero +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as +// published by the Free Software Foundation, either version 3 of the +// License, or (at your option) any later version. +// +// This program 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 Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + import { DateTime } from "luxon"; export interface Migration { diff --git a/src/db/repos/index.ts b/src/db/repos/index.ts index 0c558cd..6eff231 100644 --- a/src/db/repos/index.ts +++ b/src/db/repos/index.ts @@ -1,3 +1,18 @@ +// Copyright (C) 2019 ModZero +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as +// published by the Free Software Foundation, either version 3 of the +// License, or (at your option) any later version. +// +// This program 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 Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + import { MigrationRepository } from "./migrations"; export interface Extensions { diff --git a/src/db/repos/migrations.ts b/src/db/repos/migrations.ts index 98a400e..06649cd 100644 --- a/src/db/repos/migrations.ts +++ b/src/db/repos/migrations.ts @@ -1,3 +1,18 @@ +// Copyright (C) 2019 ModZero +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as +// published by the Free Software Foundation, either version 3 of the +// License, or (at your option) any later version. +// +// This program 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 Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + import { DateTime } from "luxon"; import { IDatabase, IMain } from "pg-promise"; import logger from "../../logger"; diff --git a/src/db/sql/index.ts b/src/db/sql/index.ts index 3208ae0..3db15be 100644 --- a/src/db/sql/index.ts +++ b/src/db/sql/index.ts @@ -1,3 +1,18 @@ +// Copyright (C) 2019 ModZero +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as +// published by the Free Software Foundation, either version 3 of the +// License, or (at your option) any later version. +// +// This program 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 Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + import { existsSync, readdirSync } from "fs"; import { Maybe, None, Some } from "monet"; import path from "path"; diff --git a/src/graphql.ts b/src/graphql.ts index 8830675..47d55f3 100644 --- a/src/graphql.ts +++ b/src/graphql.ts @@ -1,3 +1,18 @@ +// Copyright (C) 2019 ModZero +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as +// published by the Free Software Foundation, either version 3 of the +// License, or (at your option) any later version. +// +// This program 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 Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + import { ApolloServer, gql } from "apollo-server-express"; import { Kind } from "graphql/language"; import { GraphQLScalarType, GraphQLScalarTypeConfig } from "graphql/type";