mirror of
https://github.com/jorisvink/kore
synced 2025-03-10 04:59:02 -04:00
21 lines
395 B
Plaintext
21 lines
395 B
Plaintext
# python-async configuration
|
|
|
|
bind 127.0.0.1 8888
|
|
|
|
python_path src
|
|
|
|
python_import ./src/setup.py
|
|
python_import ./src/async_lock.py
|
|
python_import ./src/async_queue.py
|
|
python_import ./src/async_process.py
|
|
python_import ./src/async_socket.py
|
|
|
|
domain * {
|
|
static /queue async_queue
|
|
static /lock async_lock
|
|
static /proc async_proc
|
|
|
|
static /socket async_socket
|
|
static /socket-test socket_test
|
|
}
|