mirror of
https://github.com/danog/telerpc.git
synced 2024-11-26 20:14:48 +01:00
11 lines
164 B
PHP
11 lines
164 B
PHP
<?php
|
|
|
|
use Amp\Mysql\MysqlConfig;
|
|
|
|
return new MysqlConfig(
|
|
host: '/var/run/mysqld/mysqld.sock',
|
|
user: 'user',
|
|
password: 'pass',
|
|
database: 'rpc',
|
|
);
|