chore: update license header (#14)
Co-authored-by: Hardy <luohoufu@163.com>
This commit is contained in:
parent
ed3a04a2bc
commit
f43e453c7f
|
@ -0,0 +1,144 @@
|
||||||
|
change_in_place: true
|
||||||
|
|
||||||
|
# Regexes which if matched by a file path will always be excluded from
|
||||||
|
# getting a license header
|
||||||
|
excludes:
|
||||||
|
- NOTICE
|
||||||
|
- .gitmodules
|
||||||
|
- Makefile
|
||||||
|
- justfile
|
||||||
|
- \.gitignore
|
||||||
|
- .*lock
|
||||||
|
- .*json
|
||||||
|
- \.git/.*
|
||||||
|
- \.licensure\.yml
|
||||||
|
- README.*
|
||||||
|
- LICENSE.*
|
||||||
|
- .*\.(nix|toml|yml|md|rst|txt)
|
||||||
|
- config/.*
|
||||||
|
- lib/.*
|
||||||
|
- script/.*
|
||||||
|
- tests/.*
|
||||||
|
- website/.*
|
||||||
|
- data/.*
|
||||||
|
- docs/.*
|
||||||
|
- src/gen/.*
|
||||||
|
- gen/.*
|
||||||
|
- distribution/.*
|
||||||
|
- contrib/.*
|
||||||
|
- bin/.*
|
||||||
|
- benches/.*
|
||||||
|
- assets/.*
|
||||||
|
- /config/.*
|
||||||
|
- \..*/.*
|
||||||
|
# Definition of the licenses used on this project and to what files
|
||||||
|
# they should apply.
|
||||||
|
#
|
||||||
|
# No default license configuration is provided. This section must be
|
||||||
|
# configured by the user.
|
||||||
|
#
|
||||||
|
# Make sure to delete the [] below when you add your configs.
|
||||||
|
licenses:
|
||||||
|
- files: any
|
||||||
|
ident: AGPL-3.0-or-later
|
||||||
|
authors:
|
||||||
|
- name: INFINI Labs Team
|
||||||
|
email: hello@infini.ltd
|
||||||
|
auto_template: false
|
||||||
|
template: |
|
||||||
|
Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
|
||||||
|
The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
and as commercial software.
|
||||||
|
|
||||||
|
For commercial licensing, contact us at:
|
||||||
|
- Website: infinilabs.com
|
||||||
|
- Email: hello@infini.ltd
|
||||||
|
|
||||||
|
Open Source licensed under AGPL V3:
|
||||||
|
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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
|
||||||
|
unwrap_text: false
|
||||||
|
commenter:
|
||||||
|
type: line
|
||||||
|
comment_char: "//"
|
||||||
|
trailing_lines: 1
|
||||||
|
# Define type of comment characters to apply based on file extensions.
|
||||||
|
comments:
|
||||||
|
# The extensions (or singular extension) field defines which file
|
||||||
|
# extensions to apply the commenter to.
|
||||||
|
- extensions:
|
||||||
|
- js
|
||||||
|
- rs
|
||||||
|
- go
|
||||||
|
# The commenter field defines the kind of commenter to
|
||||||
|
# generate. There are two types of commenters: line and block.
|
||||||
|
#
|
||||||
|
# This demonstrates a line commenter configuration. A line
|
||||||
|
# commenter type will apply the comment_char to the beginning of
|
||||||
|
# each line in the license header. It will then apply a number of
|
||||||
|
# empty newlines to the end of the header equal to trailing_lines.
|
||||||
|
#
|
||||||
|
# If trailing_lines is omitted it is assumed to be 0.
|
||||||
|
commenter:
|
||||||
|
type: line
|
||||||
|
comment_char: "//"
|
||||||
|
trailing_lines: 1
|
||||||
|
- extensions:
|
||||||
|
- css
|
||||||
|
- cpp
|
||||||
|
- c
|
||||||
|
# This demonstrates a block commenter configuration. A block
|
||||||
|
# commenter type will add start_block_char as the first character
|
||||||
|
# in the license header and add end_block_char as the last character
|
||||||
|
# in the license header. If per_line_char is provided each line of
|
||||||
|
# the header between the block start and end characters will be
|
||||||
|
# line commented with the per_line_char
|
||||||
|
#
|
||||||
|
# trailing_lines works the same for both block and line commenter
|
||||||
|
# types
|
||||||
|
commenter:
|
||||||
|
type: block
|
||||||
|
start_block_char: "/*\n"
|
||||||
|
end_block_char: "*/"
|
||||||
|
per_line_char: "*"
|
||||||
|
trailing_lines: 1
|
||||||
|
# In this case extension is singular and a single string extension is provided.
|
||||||
|
- extension: html
|
||||||
|
commenter:
|
||||||
|
type: block
|
||||||
|
start_block_char: "<!--\n"
|
||||||
|
end_block_char: "-->"
|
||||||
|
- extensions:
|
||||||
|
- el
|
||||||
|
- lisp
|
||||||
|
commenter:
|
||||||
|
type: line
|
||||||
|
comment_char: ";;;"
|
||||||
|
trailing_lines: 1
|
||||||
|
# The extension string "any" is special and so will match any file
|
||||||
|
# extensions. Commenter configurations are always checked in the
|
||||||
|
# order they are defined, so if any is used it should be the last
|
||||||
|
# commenter configuration or else it will override all others.
|
||||||
|
#
|
||||||
|
# In this configuration if we can't match the file extension we fall
|
||||||
|
# back to the popular '#' line comment used in most scripting
|
||||||
|
# languages.
|
||||||
|
- extension: any
|
||||||
|
commenter:
|
||||||
|
type: line
|
||||||
|
comment_char: '#'
|
||||||
|
trailing_lines: 1
|
||||||
|
|
5
LICENSE
5
LICENSE
|
@ -4,7 +4,7 @@ Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
|
||||||
## Commercial Licensing
|
## Commercial Licensing
|
||||||
|
|
||||||
The INFINI Framework is offered under the [GNU Affero General Public License v3.0](https://opensource.org/licenses/AGPL-3.0)
|
The INFINI Console is offered under the [GNU Affero General Public License v3.0](https://opensource.org/licenses/AGPL-3.0)
|
||||||
and as commercial software.
|
and as commercial software.
|
||||||
|
|
||||||
For commercial licensing, contact us at:
|
For commercial licensing, contact us at:
|
||||||
|
@ -248,4 +248,5 @@ Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements.
|
If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements.
|
||||||
|
|
||||||
You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see <http://www.gnu.org/licenses/>.
|
You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
23
core/auth.go
23
core/auth.go
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package core
|
package core
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package core
|
package core
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI LTD. All rights reserved.
|
/* Copyright © INFINI LTD. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package enum
|
package enum
|
||||||
|
|
||||||
var PermissionMap = make(map[string][]string)
|
var PermissionMap = make(map[string][]string)
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
23
core/user.go
23
core/user.go
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package core
|
package core
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
23
main.go
23
main.go
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package model
|
package model
|
||||||
|
|
||||||
//type ClusterConfig struct {
|
//type ClusterConfig struct {
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package model
|
package model
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI LTD. All rights reserved.
|
/* Copyright © INFINI LTD. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI LTD. All rights reserved.
|
/* Copyright © INFINI LTD. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI LTD. All rights reserved.
|
/* Copyright © INFINI LTD. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package v1
|
package v1
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package v1
|
package v1
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package v1
|
package v1
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package v1
|
package v1
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package v1
|
package v1
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package v1
|
package v1
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package v1
|
package v1
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package api
|
package api
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI LTD. All rights reserved.
|
/* Copyright © INFINI LTD. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI LTD. All rights reserved.
|
/* Copyright © INFINI LTD. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package ldap
|
package ldap
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
/* Copyright © INFINI Ltd. All rights reserved.
|
||||||
* web: https://infinilabs.com
|
* web: https://infinilabs.com
|
||||||
* mail: hello#infini.ltd */
|
* mail: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI LTD. All rights reserved.
|
/* Copyright © INFINI LTD. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI LTD. All rights reserved.
|
/* Copyright © INFINI LTD. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI LTD. All rights reserved.
|
/* Copyright © INFINI LTD. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI LTD. All rights reserved.
|
/* Copyright © INFINI LTD. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
|
@ -1,3 +1,26 @@
|
||||||
|
// Copyright (C) INFINI Labs & INFINI LIMITED.
|
||||||
|
//
|
||||||
|
// The INFINI Console is offered under the GNU Affero General Public License v3.0
|
||||||
|
// and as commercial software.
|
||||||
|
//
|
||||||
|
// For commercial licensing, contact us at:
|
||||||
|
// - Website: infinilabs.com
|
||||||
|
// - Email: hello@infini.ltd
|
||||||
|
//
|
||||||
|
// Open Source licensed under AGPL V3:
|
||||||
|
// 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
/* Copyright © INFINI LTD. All rights reserved.
|
/* Copyright © INFINI LTD. All rights reserved.
|
||||||
* Web: https://infinilabs.com
|
* Web: https://infinilabs.com
|
||||||
* Email: hello#infini.ltd */
|
* Email: hello#infini.ltd */
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue