mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
This PR adds a REST API to the collab server for searching and downloading extensions. Previously, we had implemented this API in zed.dev directly, but this implementation is better, because we use the collab database to store the download counts for extensions. Release Notes: - N/A --------- Co-authored-by: Marshall Bowers <elliott.codes@gmail.com> Co-authored-by: Marshall <marshall@zed.dev> Co-authored-by: Conrad <conrad@zed.dev>
14 lines
239 B
Rust
14 lines
239 B
Rust
use super::*;
|
|
|
|
pub mod access_tokens;
|
|
pub mod buffers;
|
|
pub mod channels;
|
|
pub mod contacts;
|
|
pub mod contributors;
|
|
pub mod extensions;
|
|
pub mod messages;
|
|
pub mod notifications;
|
|
pub mod projects;
|
|
pub mod rooms;
|
|
pub mod servers;
|
|
pub mod users;
|