blob: 10072a097e9bbf1d25feadb24e2e4f65c9ec9883 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright (C) 2024-2025 Maria Lisina
# Copyright (C) 2024-2025 Danil Lisin
# SPDX-License-Identifier: Apache-2.0
case "${ib_board}" in
(i)
ib_auth="https://i.sankakuapi.com"
;;
(s)
ib_auth="https://sankakuapi.com"
;;
esac
ib_header="Authorization: Bearer"
ib_expire=86400
ib_login_file="login"
ib_key_file="password"
ib_login_word="login"
ib_key_word="password"
|