http-sense 0.1.11-beta.2

HTTP Reverse Proxy with remote monitoring
1
2
3
4
5
6
7
8
9
SQLite format 3@  .c
����G�atableresponseresponseCREATE TABLE response (
	id INTEGER PRIMARY KEY,
	content TEXT NOT NULL,
	request_id INTEGER NOT NULL,
	FOREIGN KEY(request_id) REFERENCES request(id) ON DELETE CASCADE
)c�tablerequestrequestCREATE TABLE request (
	id INTEGER PRIMARY KEY,
	content TEXT NOT NULL
)