wrangler 1.21.0

Command-line interface for all things Cloudflare Workers
Documentation
1
2
3
4
5
6
use crate::login;
use anyhow::Result;

pub fn run(scopes_list: Option<&[String]>) -> Result<()> {
    login::run(scopes_list)
}