blob: dfd35816286cb6dc488d77de940b9913a78c9ce9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright (C) 2024-2025 Maria Lisina
# Copyright (C) 2024-2025 Danil Lisin
# SPDX-License-Identifier: Apache-2.0
case "${ib_board}" in
(a)
ib_auth="https://safebooru.donmai.us"
;;
(d)
ib_auth="https://danbooru.donmai.us"
;;
esac
ib_header="Authorization: Baisc"
ib_login_file="login"
ib_key_file="api_key"
ib_login_word="login"
ib_key_word="API key"
|